37 lines
No EOL
914 B
TOML
37 lines
No EOL
914 B
TOML
[package]
|
|
name = "sharenet-passport"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Core library for Sharenet Passport creation and management"
|
|
authors = ["Your Name <your.email@example.com>"]
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://git.sharenet.sh/your-org/sharenet-passport"
|
|
|
|
[dependencies]
|
|
bip39 = "2.1"
|
|
ed25519-dalek = { version = "2.1", features = ["serde"] }
|
|
chacha20poly1305 = "0.10"
|
|
hkdf = "0.12"
|
|
sha2 = "0.10"
|
|
rand = "0.8"
|
|
rand_core = "0.6"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_cbor = "0.11"
|
|
thiserror = "1.0"
|
|
zeroize = { version = "1.7", features = ["zeroize_derive"] }
|
|
hex = "0.4"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"] # Support both native and WASM
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = [] # Standard library support
|
|
alloc = [] # No-std with alloc support
|
|
wasm = ["alloc"] # WASM target support
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.8"
|
|
|
|
[publish]
|
|
registry = "sharenet" |