herolib_rust/packages/crypt/vault/Cargo.toml
2025-08-05 16:00:24 +02:00

31 lines
1.1 KiB
TOML

[package]
name = "sal-vault"
version = "0.1.0"
edition = "2021"
authors = ["PlanetFirst <info@incubaid.com>"]
description = "SAL Vault - Secure key management and cryptographic operations"
repository = "https://git.threefold.info/herocode/sal"
license = "Apache-2.0"
keywords = ["vault", "crypto", "keys", "security", "sal"]
categories = ["cryptography", "api-bindings"]
[features]
# native = ["kv/native"]
# wasm = ["kv/web"]
# Features temporarily disabled due to external dependency issues
[dependencies]
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 = { 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 = { workspace = true }
pbkdf2 = { workspace = true }