Add dep: rand
This commit is contained in:
parent
90756a93c7
commit
adf12992bb
3 changed files with 3 additions and 0 deletions
1
Cargo.lock
generated
1
Cargo.lock
generated
|
@ -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)",
|
||||
|
|
|
@ -28,4 +28,5 @@ open = "1.1.0"
|
|||
itertools = "0.4.5"
|
||||
hoedown = "3.0.3"
|
||||
ansi_term = "0.7.1"
|
||||
rand = "0.3"
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue