feat: v0.3.8, remove openssl dependency

This commit is contained in:
2024-11-14 01:31:15 +08:00
parent 9fe642ba7a
commit f2ed407181
7 changed files with 562 additions and 176 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "local-mini-kms"
version = "0.3.7"
version = "0.3.8"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -19,7 +19,6 @@ lazy_static = "1.5"
serde_derive = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
josekit = "0.8"
secmem-proc = "0.3"
seckey = "0.12"
rust_util = { version = "0.6", features = ["use_clap"] }
@@ -29,6 +28,11 @@ 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"