diff --git a/Cargo.lock b/Cargo.lock index 105498e3..61a216b6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -12,6 +12,7 @@ dependencies = [ "log 0.3.2 (registry+https://github.com/rust-lang/crates.io-index)", "open 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "prettytable-rs 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", + "rand 0.3.11 (registry+https://github.com/rust-lang/crates.io-index)", "regex 0.1.41 (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)", diff --git a/Cargo.toml b/Cargo.toml index 9a513a53..45898863 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -28,4 +28,5 @@ open = "1.1.0" itertools = "0.4.5" hoedown = "3.0.3" ansi_term = "0.7.1" +rand = "0.3" diff --git a/src/main.rs b/src/main.rs index 3348a680..52ac03d7 100644 --- a/src/main.rs +++ b/src/main.rs @@ -12,6 +12,7 @@ extern crate config; extern crate open; extern crate itertools; extern crate ansi_term; +extern crate rand; pub use cli::CliConfig; pub use configuration::Configuration;