-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 768 Bytes
/
Cargo.toml
File metadata and controls
31 lines (28 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[workspace]
resolver = "2"
default-members = ["bitvault-ui", "bitvault-core"]
members = [
"bitvault-ui", # Current egui frontend
"bitvault-core", # Security-focused core component
]
# Workspace-wide settings (shared by all members)
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["BitVault Team", "Hunter Beast", "Secure Sovereign"]
repository = "https://github.com/BitVaulty/BitVaultWallet"
# Shared dependencies across workspace members
[workspace.dependencies]
# Common dependencies
serde = { version = "1", features = ["derive"] }
serde_json = "1"
anyhow = "1.0.86"
log = "0.4"
# Security-related dependencies
zeroize = "1.7.0"
getrandom = "0.3.2"
aes-gcm = "0.10.3"
rand = "0.9.0"
rand_core = "0.9.3"
argon2 = "0.5.2"
hex = "0.4.3"