diff options
| author | acdenisSK <[email protected]> | 2017-07-22 16:59:10 +0200 |
|---|---|---|
| committer | acdenisSK <[email protected]> | 2017-07-22 16:59:10 +0200 |
| commit | 2b053ea007d6ca9cc820cb910597e8b5dad89d70 (patch) | |
| tree | c0664957758043b80fc7e40d9acc7923da53d3c1 /Cargo.toml | |
| parent | Remove the uneccessary function and `Send + Sync` bounds (diff) | |
| download | serenity-2b053ea007d6ca9cc820cb910597e8b5dad89d70.tar.xz serenity-2b053ea007d6ca9cc820cb910597e8b5dad89d70.zip | |
Fix #130
Removed action support from the builtin one as well, due to it adding some uneccassery complexity and it being only asked upon by one user
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -18,6 +18,7 @@ log = "~0.3" serde = "^1.0" serde_derive = "^1.0" serde_json = "^1.0" +parking_lot = "0.4" [dependencies.byteorder] optional = true @@ -57,9 +58,6 @@ version = "0.1" optional = true version = "0.2" -[dependencies.parking_lot] -version = "0.4" - [dependencies.sodiumoxide] default-features = false optional = true @@ -85,6 +83,7 @@ default = [ "cache", "client", "framework", + "builtin_framework", "gateway", "model", "http", @@ -95,6 +94,7 @@ cache = ["lazy_static"] client = ["gateway", "lazy_static", "http", "typemap"] extras = [] framework = ["client", "model", "utils"] +builtin_framework = ["framework"] gateway = ["http", "websocket", "tokio-core", "futures"] http = ["hyper", "hyper-native-tls", "lazy_static", "multipart", "native-tls"] model = ["builder", "http"] |