Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
XX committed Jul 28, 2018
1 parent a6c660d commit b56d5cb
Show file tree
Hide file tree
Showing 4 changed files with 215 additions and 19 deletions.
7 changes: 6 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,6 @@
target
/target
**/*.rs.bk
Cargo.lock

.idea
*.iml
217 changes: 204 additions & 13 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ version = "0.0.1"
authors = ["Gulshan Singh <[email protected]>"]

[dependencies]
getopts = "*"
libc = "*"
env_logger = "*"
log = "*"
getopts = "0.2"
libc = "0.2"
env_logger = "0.5"
log = "0.4"
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ impl Config {
fn main() {
root_check();

env_logger::init().unwrap();
env_logger::init();

let config = parse_args();
debug!("Config: {:?}", config);
Expand Down

0 comments on commit b56d5cb

Please sign in to comment.