-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (38 loc) · 1.17 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
[package]
name = "ybdec"
version = "0.1.0"
edition = "2021"
authors = ["Nazar Serhiichuk"]
description = "A simple tool that can be used to encrypt and decrypt payloads using asymmetric PIV keys on your YubiKey"
license = "Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
aes-gcm = { version = "0.10", features = ["std", "zeroize"] }
anyhow = "1.0"
base16ct = { version = "0.2", features = ["std", "alloc"] }
clap = { version = "4.5", features = ["derive"] }
clap-markdown = { version = "0.1", optional = true }
elliptic-curve = "0.13"
env_logger = "0.11.3"
hkdf = { version = "0.12", features = ["std"] }
log = "0.4.21"
rand = "0.8"
sha2 = "0.10"
spki = "0.7"
zeroize = "1.7"
[dependencies.p256]
version = "0.13"
default-features = false
features = ["ecdh", "pem", "pkcs8", "std", "arithmetic", "expose-field"]
[dependencies.yubikey]
branch = "handle-reference-data-not-found"
features = ["untested"]
git = "https://github.com/G1gg1L3s/yubikey.rs.git"
version = "0.8.0"
[dev-dependencies]
assert_cmd = "2.0"
hex-literal = "0.3"
once_cell = "1"
tempfile = "3.10"
[features]
clap-markdown = ["dep:clap-markdown"]