aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authoracdenisSK <[email protected]>2017-07-22 16:59:10 +0200
committeracdenisSK <[email protected]>2017-07-22 16:59:10 +0200
commit2b053ea007d6ca9cc820cb910597e8b5dad89d70 (patch)
treec0664957758043b80fc7e40d9acc7923da53d3c1 /Cargo.toml
parentRemove the uneccessary function and `Send + Sync` bounds (diff)
downloadserenity-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.toml6
1 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 04dfb7c..2f38dda 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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"]