guzzles data
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..0b97bae --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,18 @@ +[package] +name = "data-guzzler" +version = "0.1.0" +edition = "2021" + +[dependencies] +serenity = { version = "0.12", features = [ + "builder", + "client", + "utils", + "rustls_backend", + "gateway", + "cache", +], default-features = false } +poise = { git = "https://github.com/serenity-rs/poise" } +anyhow = "1.0.80" +tokio = { version = "1.36.0", features = ["rt-multi-thread"] } +emoji = { git = "https://github.com/apricot-conservation-project/emoji", version = "0.1.0" } |