[package] name = "local-mini-kms" version = "1.0.1" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] default = ["yubikey"] yubikey = ["yubico_manager"] [dependencies] zeroize = "1.8" clap = "2.34" hex = "0.4" base64 = "0.21" sha2 = "0.10" lazy_static = "1.5" serde_derive = "1.0" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" secmem-proc = "0.3" 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"] } rusqlite = "0.31" yubico_manager = { version = "0.9", optional = true } rpassword = "7.3" 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" [target.'cfg(target_os = "linux")'.dependencies] procfs = "0.13"