Add dependency: serde

This commit is contained in:
Matthias Beyer 2015-11-09 18:33:44 +01:00
parent e8e82f6844
commit 9167fde4fb
3 changed files with 3 additions and 0 deletions

1
Cargo.lock generated
View file

@ -8,6 +8,7 @@ dependencies = [
"log 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
"regex 0.1.41 (registry+https://github.com/rust-lang/crates.io-index)",
"rustty 0.1.9 (registry+https://github.com/rust-lang/crates.io-index)",
"serde 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_json 0.6.0 (registry+https://github.com/rust-lang/crates.io-index)",
"term 0.2.12 (registry+https://github.com/rust-lang/crates.io-index)",
"term_grid 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",

View file

@ -17,6 +17,7 @@ config = "0.1.2"
chrono = "0.2.16"
serde = "0.6.1"
serde_json = "0.6.0"
clap = { version = "1.4.5", features = ["yaml"] }

View file

@ -1,5 +1,6 @@
#[macro_use] extern crate clap;
#[macro_use] extern crate log;
#[macro_use] extern crate serde;
#[macro_use] extern crate serde_json;
extern crate config;
extern crate regex;