aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-06-24 15:06:43 -0700
committerFuwn <[email protected]>2021-06-24 15:06:43 -0700
commit2bccd50b7a11dda0ae239ce13efcdac118bfee92 (patch)
tree28f665461bb9746d70878071b11537d784a59842 /Cargo.toml
downloaddos-bot-2bccd50b7a11dda0ae239ce13efcdac118bfee92.tar.xz
dos-bot-2bccd50b7a11dda0ae239ce13efcdac118bfee92.zip
feat(dos-bot): :star:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml31
1 files changed, 31 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..e8f8d24
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,31 @@
+[package]
+name = "dos_bot"
+version = "0.1.0"
+authors = ["Fuwn <[email protected]>"]
+edition = "2018"
+readme = "README.rst"
+homepage = "https://github.com/fuwn/dos-bot"
+repository = "https://github.com/fuwn/dos-bot"
+license = "GPL-3.0-only"
+keywords = ["rust", "assembly", "discord"]
+publish = false
+
+[dependencies]
+# Discord
+serenity = { version = "0.10.8", features = ["cache", "framework", "standard_framework", "rustls_backend"] }
+
+# Utility
+dotenv = "0.15.0"
+tokio = { version = "1.7.1", features = ["macros", "signal", "rt-multi-thread"] }
+config = "0.11.0"
+
+# Serialization
+serde = "1.0.126"
+serde_derive = "1.0.126"
+
+# Database
+redis = "0.20.2"
+
+# Logging
+log = "0.4.14"
+pretty_env_logger = "0.4.0"