aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authoracdenisSK <[email protected]>2017-08-20 23:02:38 +0200
committeracdenisSK <[email protected]>2017-08-20 23:05:34 +0200
commit45d72eff173d87b1353d8b5d001775cc49129dab (patch)
tree5ecfdf54bbaeb597bd557c0307ddfd6392b7860e /Cargo.toml
parentUse wildcard (diff)
downloadserenity-45d72eff173d87b1353d8b5d001775cc49129dab.tar.xz
serenity-45d72eff173d87b1353d8b5d001775cc49129dab.zip
Revamp the args to an `Args` struct
Fixes #142
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml14
1 files changed, 5 insertions, 9 deletions
diff --git a/Cargo.toml b/Cargo.toml
index bedd590..a464213 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -20,6 +20,10 @@ serde_derive = "^1.0"
serde_json = "^1.0"
parking_lot = "0.4"
+[dependencies.vec_shift]
+optional = true
+version = "0.1.0"
+
[dependencies.byteorder]
optional = true
version = "1.0"
@@ -40,14 +44,6 @@ version = "~0.10"
optional = true
version = "0.2.2"
-[dependencies.regex]
-optional = true
-version = "0.2"
-
-[dependencies.itertools]
-optional = true
-version = "0.6.1"
-
[dependencies.lazy_static]
optional = true
version = "~0.2"
@@ -101,7 +97,7 @@ builder = []
cache = ["lazy_static"]
client = ["gateway", "lazy_static", "http", "typemap"]
extras = []
-framework = ["client", "model", "utils", "regex", "itertools"]
+framework = ["client", "model", "utils", "vec_shift"]
gateway = ["http", "websocket", "tokio-core", "futures"]
http = ["hyper", "hyper-native-tls", "lazy_static", "multipart", "native-tls"]
model = ["builder", "http"]