From 42a60477c9f820cde9bcf6b278bf6113c0444add Mon Sep 17 00:00:00 2001 From: tymmkang Date: Sat, 22 Mar 2025 01:30:30 +0900 Subject: [PATCH] =?UTF-8?q?=EB=9F=AC=EC=8A=A4=ED=8A=B8=20=ED=94=84?= =?UTF-8?q?=EB=A1=9C=EC=A0=9D=ED=8A=B8=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 ++ Cargo.toml | 9 +++++++++ src/main.rs | 3 +++ 3 files changed, 14 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.toml create mode 100644 src/main.rs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..96ef6c0 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/target +Cargo.lock diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..4494225 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "rust-simple-web-api" +version = "0.1.0" +edition = "2021" + +[dependencies] +axum = "0.8.1" +chrono = "0.4.40" +tokio = { version = "1.44.1", features = ["full"] } diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}