-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
42 lines (37 loc) · 1.06 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[package]
name = "update-ssh-keys"
authors = [ "Stephen Demos <[email protected]>",
"Luca Bruno <[email protected]>" ]
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.4.2-alpha.0"
edition = "2021"
[dependencies]
fs2 = "0.4"
# Public dependencies, exposed through library API.
error-chain = { version = "0.12", default-features = false }
clap = { version = "4.4.6", features = ["cargo"] }
uzers = "0.11.3"
openssh-keys = "0.6.2"
lazy_static = "1.4.0"
tempfile = "3.8.0"
[[bin]]
name = "update-ssh-keys"
path = "src/main.rs"
doc = false
[lib]
path = "src/lib.rs"
doc = true
[profile.release]
lto = false
[package.metadata.release]
sign-commit = true
upload-doc = false
disable-push = true
disable-publish = true
pre-release-commit-message = "cargo: update-ssh-keys release {{version}}"
pro-release-commit-message = "cargo: version bump to {{version}}"
tag-message = "update-ssh-keys v{{version}}"
tag-prefix = "v"