summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario Krehl <mario-krehl@gmx.de>2017-12-10 11:47:03 +0100
committerMario Krehl <mario-krehl@gmx.de>2017-12-10 11:47:03 +0100
commit9bc85993c5edef3dac2665412fe36d9b80d2be8f (patch)
tree9d00f80fbc67418437043b12ddafcb363612f198
parent244dd40b420a6cdbce9b1d8ee92498e96d673c45 (diff)
Add serde feature to dependency chrono
-rw-r--r--Cargo.lock1
-rw-r--r--Cargo.toml6
2 files changed, 6 insertions, 1 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 77e855e..08eb603 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -105,6 +105,7 @@ version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"num 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)",
+ "serde 1.0.24 (registry+https://github.com/rust-lang/crates.io-index)",
"time 0.1.38 (registry+https://github.com/rust-lang/crates.io-index)",
]
diff --git a/Cargo.toml b/Cargo.toml
index c5ecaea..c61d57f 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -4,7 +4,6 @@ name = "aklog-server"
version = "0.1.0"
[dependencies]
-chrono = "0.4"
clap = "2"
dimensioned = "0.6"
error-chain = "0.11"
@@ -18,3 +17,8 @@ serde_derive = "1"
serde_json = "1"
simplelog = "^0.4.3"
toml = "^0.4"
+
+[dependencies.chrono]
+features = [ "serde" ]
+version = "0.4"
+