This commit is contained in:
2025-08-05 16:00:24 +02:00
parent 6e01f99958
commit dfd6931c5b
16 changed files with 129 additions and 421 deletions

View File

@@ -15,16 +15,16 @@ categories = ["cryptography", "api-bindings"]
# Features temporarily disabled due to external dependency issues
[dependencies]
getrandom = { version = "0.3.3", features = ["wasm_js"] }
rand = "0.9.1"
getrandom = { workspace = true }
rand = { workspace = true }
# We need to pull v0.2.x to enable the "js" feature for wasm32 builds
getrandom_old = { package = "getrandom", version = "0.2.16", features = ["js"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
chacha20poly1305 = "0.10.1"
k256 = { version = "0.13.4", features = ["ecdh"] }
sha2 = "0.10.9"
serde = { workspace = true }
serde_json = { workspace = true }
chacha20poly1305 = { workspace = true }
k256 = { workspace = true }
sha2 = { workspace = true }
# kv = { git = "https://git.ourworld.tf/samehabouelsaad/sal-modular", package = "kvstore", rev = "9dce815daa" }
# Temporarily disabled due to broken external dependencies
bincode = { version = "2.0.1", features = ["serde"] }
pbkdf2 = "0.12.2"
bincode = { workspace = true }
pbkdf2 = { workspace = true }