CrypteCipher/core/Cargo.toml
MoCipher 267d8f6edd
Some checks failed
CI / build (macos-latest, stable) (push) Has been cancelled
CI / build (ubuntu-latest, stable) (push) Has been cancelled
CI / build (windows-latest, stable) (push) Has been cancelled
Initial CrypteCipher scaffold and features
2026-02-12 00:02:00 +01:00

49 lines
1.1 KiB
TOML

[package]
name = "cryptec_core"
version = "0.1.0"
edition = "2021"
[lib]
name = "cryptec_core"
crate-type = ["cdylib", "rlib"]
[dependencies]
rand = "0.8"
hex = "0.4"
secp256k1 = { version = "0.26", default-features = false, features = ["rand"] }
# Bitcoin on-chain utilities
bitcoin = "0.29"
bech32 = "0.8"
sha2 = "0.10"
hmac = "0.12"
# BIP39 / HD derivation
bip39 = "1.1"
bip32 = "0.3"
# BDK for wallet abstractions (UTXO management, PSBT, descriptors)
bdk = { version = "0.27", features = ["keys-bip39", "electrum", "sqlite"] }
# Rust-Lightning (lightning protocol) - use as optional or for in-process nodes
lightning = "0.0.124"
# Crypto / storage / tools
argon2 = "0.4"
aes-gcm = "0.10"
base64 = "0.21"
keyring = "1.0"
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
hidapi = "1.3"
# Monero (RPC client)
reqwest = { version = "0.11", features = ["blocking", "json", "rustls-tls"] }
monero = "0.18"
# Windows-specific secure-delete dependency
winapi = { version = "0.3", optional = true, features = ["winbase"] }
# Note: Additional features and platform-specific flags will be required for full implementations