diff options
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 20 |
1 files changed, 20 insertions, 0 deletions
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 |