aboutsummaryrefslogtreecommitdiffstats
path: root/Cargo.toml
diff options
context:
space:
mode:
authorGustav Sörnäs <gustav@sornas.net>2020-11-11 19:32:15 +0100
committerGustav Sörnäs <gustav@sornas.net>2020-11-11 19:32:15 +0100
commitaca6d26d3b7d338ce95d88c58a557236024992fd (patch)
tree4ea1bbada23f75299d69e5c094ba09d8933003c6 /Cargo.toml
parent5dfc675f78c113465d1522624a9dd970d16d6bfe (diff)
downloadkodapa-aca6d26d3b7d338ce95d88c58a557236024992fd.tar.gz
build without voice
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml15
1 files changed, 12 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 3ae0c4e..c9eefec 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -7,9 +7,18 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-discord = { git = "https://github.com/SpaceManiac/discord-rs" } #TODO no voice
futures = "0.3"
-serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
slack = "0.25"
-tokio = { version = "0.2", features = ["full"] } #TODO actual features
+
+[dependencies.discord]
+git = "https://github.com/SpaceManiac/discord-rs"
+default-features = false
+
+[dependencies.serde]
+version = "1.0"
+features = [ "derive" ]
+
+[dependencies.tokio]
+version = "0.2"
+features = [ "macros", "sync" ]