Add dep: yaml-rust

This commit is contained in:
Matthias Beyer 2016-01-03 18:39:28 +01:00
parent aaf3660f31
commit 885b12bc43
3 changed files with 8 additions and 0 deletions

6
Cargo.lock generated
View file

@ -19,6 +19,7 @@ dependencies = [
"term_grid 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)", "term_grid 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
"url 0.2.37 (registry+https://github.com/rust-lang/crates.io-index)", "url 0.2.37 (registry+https://github.com/rust-lang/crates.io-index)",
"uuid 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)", "uuid 0.1.18 (registry+https://github.com/rust-lang/crates.io-index)",
"yaml-rust 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
] ]
[[package]] [[package]]
@ -290,3 +291,8 @@ name = "yaml-rust"
version = "0.2.2" version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "yaml-rust"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"

View file

@ -29,4 +29,5 @@ itertools = "0.4.5"
hoedown = "3.0.3" hoedown = "3.0.3"
ansi_term = "0.7.1" ansi_term = "0.7.1"
rand = "0.3" rand = "0.3"
yaml-rust = "0.3.0"

View file

@ -19,6 +19,7 @@ extern crate open;
extern crate itertools; extern crate itertools;
extern crate ansi_term; extern crate ansi_term;
extern crate rand; extern crate rand;
extern crate yaml_rust;
pub use cli::CliConfig; pub use cli::CliConfig;
pub use configuration::Configuration; pub use configuration::Configuration;