diff options
| author | acdenisSK <[email protected]> | 2017-08-20 23:02:38 +0200 |
|---|---|---|
| committer | acdenisSK <[email protected]> | 2017-08-20 23:05:34 +0200 |
| commit | 45d72eff173d87b1353d8b5d001775cc49129dab (patch) | |
| tree | 5ecfdf54bbaeb597bd557c0307ddfd6392b7860e /Cargo.toml | |
| parent | Use wildcard (diff) | |
| download | serenity-45d72eff173d87b1353d8b5d001775cc49129dab.tar.xz serenity-45d72eff173d87b1353d8b5d001775cc49129dab.zip | |
Revamp the args to an `Args` struct
Fixes #142
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 14 |
1 files changed, 5 insertions, 9 deletions
@@ -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"] |