-
Notifications
You must be signed in to change notification settings - Fork 17
/
Cargo.toml
38 lines (33 loc) · 1020 Bytes
/
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
[package]
name = "ssh-key-dir"
repository = "https://github.com/coreos/ssh-key-dir"
license = "Apache-2.0"
edition = "2021"
rust-version = "1.75.0"
exclude = ["/.cci.jenkinsfile", "/.github", "/.gitignore"]
authors = [ "Benjamin Gilbert <bgilbert@redhat.com>" ]
description = "sshd AuthorizedKeysCommand to read ~/.ssh/authorized_keys.d"
readme = "README.md"
version = "0.1.4"
[package.metadata.release]
sign-commit = true
sign-tag = true
push = false
publish = false
pre-release-commit-message = "cargo: ssh-key-dir release {{version}}"
tag-message = "ssh-key-dir v{{version}}"
# See https://github.com/coreos/cargo-vendor-filterer
[package.metadata.vendor-filter]
platforms = ["*-unknown-linux-gnu"]
tier = "2"
all-features = true
[[bin]]
name = "ssh-key-dir"
path = "src/main.rs"
[dependencies]
anyhow = ">= 1.0.38, < 2"
clap = { version = "4", default-features = false, features = ["std", "cargo", "help", "string", "usage"] }
uzers = ">= 0.10, < 0.12"
[dev-dependencies]
nix = ">= 0.17, < 0.27"
tempfile = "3"