From e670f5389171a7a124d990fe2093e1f9290eccfc Mon Sep 17 00:00:00 2001 From: Keuin Date: Sat, 24 Feb 2024 02:46:28 +0800 Subject: Initial commit --- Cargo.toml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..74ca1d3 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,19 @@ +[package] +name = "daigunyun" +version = "0.0.1" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +serde_derive = "1.0.197" +serde = "1.0.197" +toml = "0.8.10" +anyhow = "1.0.80" +tokio = { version = "1.36.0", features = ["full"] } +axum = { version = "0.7.4", features = ["tracing"] } +tracing = "0.1.40" +tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } +sqlx = { version = "0.7.3", features = ["sqlite", "runtime-tokio"] } +futures-util = "0.3.29" +log = "0.4.20" -- cgit v1.2.3