From 9167fde4fbf33a6227a66df6363d316369f1d8a4 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 9 Nov 2015 18:33:44 +0100 Subject: [PATCH] Add dependency: serde --- Cargo.lock | 1 + Cargo.toml | 1 + src/main.rs | 1 + 3 files changed, 3 insertions(+) diff --git a/Cargo.lock b/Cargo.lock index 2743e2eb..bc8ed48b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -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)", diff --git a/Cargo.toml b/Cargo.toml index 911aca26..02766913 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"] } diff --git a/src/main.rs b/src/main.rs index b9129280..fd57f95e 100644 --- a/src/main.rs +++ b/src/main.rs @@ -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;