44 lines
1.2 KiB
TOML
44 lines
1.2 KiB
TOML
[package]
|
|
name = "local-mini-kms"
|
|
version = "1.0.7"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
default = ["yubikey", "harden_process"]
|
|
yubikey = ["yubico_manager"]
|
|
harden_process = ["secmem-proc", "procfs"]
|
|
|
|
[dependencies]
|
|
zeroize = "1.8"
|
|
clap = "2.34"
|
|
hex = "0.4"
|
|
base64 = "0.22"
|
|
sha2 = "0.10"
|
|
lazy_static = "1.5"
|
|
serde_derive = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
secmem-proc = { version = "0.3", optional = true }
|
|
seckey = "0.12"
|
|
rust_util = { version = "0.6", features = ["use_clap"] }
|
|
tokio = { version = "1.37", features = ["full"] }
|
|
hyper = { version = "0.14", features = ["client", "server", "tcp", "http1", "http2"] }
|
|
# use bundled fix musl build core dump on CentOS 6.9
|
|
rusqlite = { version = "0.32", features = ["bundled"] }
|
|
yubico_manager = { version = "0.9", optional = true }
|
|
rand = "0.8"
|
|
rsa = "0.9"
|
|
aes-kw = { version = "0.2", features = ["alloc"] }
|
|
sha1 = "0.10"
|
|
aes-gcm-stream = "0.2"
|
|
jose-jwk = "0.1"
|
|
log = "0.4"
|
|
env_logger = "0.11"
|
|
log4rs = "1.3"
|
|
pinentry-util = "0.1.1"
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
procfs = { version = "0.13", optional = true }
|