Add cross-platform keychain support using the keyring crate for secure credential storage with biometric authentication (TouchID on macOS, Windows Hello on Windows, Secret Service on Linux). - Add keychain module with enable/disable biometric unlock - Add Tauri commands for keychain operations - Add Keychain error variant for proper error handling - Add Java SDK foundation - Update milestone docs to reflect 95% completion
58 lines
1.5 KiB
TOML
58 lines
1.5 KiB
TOML
[package]
|
|
name = "synor-wallet"
|
|
version = "0.1.0"
|
|
description = "Secure Synor blockchain wallet with post-quantum cryptography"
|
|
authors = ["Synor Team"]
|
|
edition = "2021"
|
|
license = "MIT"
|
|
|
|
[lib]
|
|
name = "synor_wallet_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = ["tray-icon"] }
|
|
tauri-plugin-fs = "2"
|
|
tauri-plugin-store = "2"
|
|
tauri-plugin-shell = "2"
|
|
tauri-plugin-dialog = "2"
|
|
tauri-plugin-clipboard-manager = "2"
|
|
tauri-plugin-updater = "2"
|
|
tauri-plugin-notification = "2"
|
|
tauri-plugin-process = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tokio = { version = "1", features = ["full"] }
|
|
thiserror = "1"
|
|
|
|
# Cryptography
|
|
bip39 = "2"
|
|
argon2 = "0.5"
|
|
chacha20poly1305 = "0.10"
|
|
rand = "0.8"
|
|
sha2 = "0.10"
|
|
hmac = "0.12"
|
|
hex = "0.4"
|
|
zeroize = { version = "1", features = ["derive"] }
|
|
bech32 = "0.11"
|
|
|
|
# OS Keychain integration (macOS Keychain, Windows Credential Manager, Linux Secret Service)
|
|
keyring = "3"
|
|
|
|
# Local crates from the monorepo (optional - for direct integration with core)
|
|
synor-crypto = { path = "../../../crates/synor-crypto", optional = true }
|
|
synor-types = { path = "../../../crates/synor-types", optional = true }
|
|
synor-rpc = { path = "../../../crates/synor-rpc", optional = true }
|
|
|
|
[features]
|
|
default = ["custom-protocol"]
|
|
custom-protocol = ["tauri/custom-protocol"]
|
|
|
|
[profile.release]
|
|
lto = true
|
|
opt-level = "z"
|
|
codegen-units = 1
|
|
strip = true
|