-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
63 lines (59 loc) · 1.71 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "card-cli"
version = "1.10.14"
authors = ["Hatter Jiang <[email protected]>"]
edition = "2018"
[features]
default = ["with-sequoia-openpgp", "with-secure-enclave"]
with-sequoia-openpgp = ["sequoia-openpgp", "openpgp-card-sequoia"]
with-secure-enclave = ["swift-rs"]
[dependencies]
authenticator = "0.3"
clap = "2.0"
rust_util = { version = "0.6", features = ["use_clap"] }
digest = "0.10"
sha1 = "0.10"
sha2 = "0.10"
rand = "0.8"
base64 = "0.21"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
hex = "0.4"
u2f = "0.2"
openpgp-card = "0.3"
openpgp-card-pcsc = "0.3"
openpgp-card-sequoia = { version = "0.1", optional = true }
sequoia-openpgp = { version = "1.0", optional = true }
chrono = "0.4"
simpledateformat = "0.1"
ring = "0.17"
openssl = "0.10"
pem = "3.0"
yubikey = { version = "0.8", features = ["untested"] }
yubico_manager = "0.9"
x509 = "0.2"
x509-parser = { version = "0.15", features = ["verify"] }
ssh-agent = { version = "0.2", features = ["agent"] }
p256 = { version = "0.13", features = ["pem", "ecdh"] }
p384 = { version = "0.13", features = ["pem", "ecdh"] }
spki = { version = "0.7", features = ["pem"] }
tabled = "0.14"
env_logger = "0.10"
bech32 = "0.9"
ecdsa = { version = "0.16", features = ["verifying", "spki", "pem", "der"] }
jwt = "0.16"
reqwest = { version = "0.11", features = ["blocking"] }
pinentry = "0.5"
rpassword = "7.3"
secrecy = "0.8"
der-parser = "9.0"
sshcerts = "0.13"
swift-rs = { version = "1.0.7", optional = true }
regex = "1.4.6"
#lazy_static = "1.4.0"
#ssh-key = "0.4.0"
#ctap-hid-fido2 = "2.1.3"
[build-dependencies]
swift-rs = { version = "1.0.7", features = ["build"], optional = true }
[patch.crates-io]
u2f = { git = "https://github.com/jht5945/u2f-rs.git" }