From aae1f386456a605c12263e2ba5f09dc36bb180b3 Mon Sep 17 00:00:00 2001 From: Keuin Date: Sun, 27 Mar 2022 17:40:18 +0800 Subject: Finally, it works. Further cleanup work is needed. --- Cargo.toml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..a635cd6 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,20 @@ +[package] +name = "kimikuri_rs" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +tokio = { version = "1.17.0", features = ["full"] } +futures = "0.3.21" +warp = "0.3.2" +teloxide = { version = "0.7.2", features = ["macros", "auto-send"] } +log = "0.4.16" +pretty_env_logger = "0.4.0" +serde = "1.0.136" +serde_derive = "1.0.136" +serde_json = "1.0.79" +sqlx = { version = "0.5", features = [ "runtime-tokio-rustls", "sqlite" ] } +urandom = "0.1.0" +bs58 = "0.4.0" \ No newline at end of file -- cgit v1.2.3