Skip to content

Commit

Permalink
chore(Deps,muxed): Upgrade docopt 0.7.0 -> 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
brianp committed Dec 13, 2019
1 parent f805c10 commit d0429ef
Show file tree
Hide file tree
Showing 6 changed files with 107 additions and 72 deletions.
166 changes: 100 additions & 66 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ members = [

[dependencies]
common = { path = "./common" }
docopt = "0.7"
docopt = "1.1.0"
edit = { path = "./edit" }
load = { path = "./load" }
new = { path = "./new" }
Expand Down
2 changes: 1 addition & 1 deletion common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ publish = false
[dependencies]
dirs = "1.0.5"
rand = "0.3.15"
rustc-serialize = "0.3"
serde = { version = "1", features = ["derive"] }
3 changes: 2 additions & 1 deletion common/src/args.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
//! The struct managing cli args
use rand::random;
use serde::Deserialize;

/// The args struct for taking arguments passed in from the command line
/// and making it easier to pass around.
Expand All @@ -14,7 +15,7 @@ use rand::random;
/// `cmd_new` literally nothing
/// `cmd_snapshot` not sure why I have these
///
#[derive(Debug, RustcDecodable)]
#[derive(Debug, Deserialize)]
pub struct Args {
pub flag_debug: bool,
pub flag_d: bool,
Expand Down
1 change: 1 addition & 0 deletions common/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
extern crate dirs;
extern crate rand;
extern crate serde;

pub mod args;
pub mod first_run;
Expand Down

0 comments on commit d0429ef

Please sign in to comment.