Skip to content
This repository has been archived by the owner on Jan 6, 2023. It is now read-only.

Commit

Permalink
cargo: update users to 0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
lucab committed Oct 15, 2018
1 parent 9ca7ea4 commit e111820
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 30 deletions.
52 changes: 26 additions & 26 deletions Cargo.lock

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

8 changes: 5 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,16 @@ license = "Apache-2.0"
repository = "https://github.com/coreos/update-ssh-keys"
documentation = "https://docs.rs/update-ssh-keys"
description = "A tool for managing authorized SSH keys"
version = "0.3.1-alpha.0"
version = "0.4.0-alpha.0"

[dependencies]
# Private dependencies.
clap = "2.26"
error-chain = { version = "0.12", default-features = false }
fs2 = "0.4"
# Public dependencies, exposed through library API.
error-chain = { version = "0.12", default-features = false }
openssh-keys = "0.3"
users = "0.7"
users = "0.8"

[[bin]]
name = "update-ssh-keys"
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ fn config() -> Result<Config> {
if u == "root" {
"core".into()
} else {
u
u.to_string_lossy().into_owned()
}
});

Expand Down

0 comments on commit e111820

Please sign in to comment.