-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (28 loc) · 864 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
[package]
name = "ssh-fetch-keys"
description = "An AuthorizedKeysCommand for openssh that retrieves and caches your public keys from online accounts such as GitHub"
repository = "https://github.com/scottcwang/ssh-fetch-keys/"
version = "0.3.0"
authors = ["Scott C Wang <[email protected]>"]
edition = "2021"
license = "MIT"
keywords = ["ssh", "key"]
categories = ["caching", "authentication", "cryptography", "network-programming", "config"]
[features]
default = ["reqwest"]
[dependencies]
uzers = "0.11"
regex = "1.10"
url = "2.4"
curl = { version = "0.4", optional = true }
reqwest = { version = "0.11", features = ["blocking"], optional = true }
crc = "3.0"
anyhow = "1.0"
lazy_static = "1.4"
log = "0.4"
env_logger = "0.10"
clap = { version = "4.4", features = ["derive"] }
clap-verbosity-flag = "2.1"
[dev-dependencies]
mockall = "0.11"
test-log = "0.2"