feat: v0.3.5, add subcommand yubikey-init-master-key

This commit is contained in:
2024-09-03 23:19:17 +08:00
parent d6c49a15ea
commit b188a2bc1e
5 changed files with 94 additions and 24 deletions

View File

@@ -1,17 +1,17 @@
[package]
name = "local-mini-kms"
version = "0.3.4"
version = "0.3.5"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
zeroize = "1.5"
clap = "2.33"
zeroize = "1.8"
clap = "2.34"
hex = "0.4"
base64 = "0.21"
sha2 = "0.10"
lazy_static = "1.4"
lazy_static = "1.5"
serde_derive = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
@@ -19,11 +19,12 @@ josekit = "0.8"
secmem-proc = "0.3"
seckey = "0.12"
rust_util = { version = "0.6", features = ["use_clap"] }
tokio = { version = "1.19", features = ["full"] }
tokio = { version = "1.37", features = ["full"] }
hyper = { version = "0.14", features = ["client", "server", "tcp", "http1", "http2"] }
rusqlite = "0.28"
rusqlite = "0.31"
yubico_manager = "0.9"
rpassword = "7.2"
rpassword = "7.3"
rand = "0.8"
[target.'cfg(target_os = "linux")'.dependencies]
procfs = "0.13"