-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
84 lines (72 loc) · 2 KB
/
Cargo.toml
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
[workspace.package]
description = "A post-quantum signature and encryption tool for the modern world"
authors = ["Asurar0"]
readme = "README.md"
repository = "https://github.com/Asurar0/monero"
rust-version = "1.80"
license = "MIT"
version = "1.0.0"
edition = "2021"
[profile.release]
panic = "abort"
lto = true
strip = "none"
codegen-units = 1
opt-level = 3
[profile.dev]
lto = false
strip = "none"
opt-level = 1
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace]
resolver = "2"
members = [
"src/keyring",
"src/lib",
"src/core",
"src/schemes",
"src/tui",
"src/bin",
]
[workspace.dependencies]
## ------------------ Workspace members --------------------- ##
mikomikagi-tui = { path = "./src/tui" }
mikomikagi-schemes = { path = "./src/schemes" }
mikomikagi-keyring = { path = "./src/keyring" }
mikomikagi-core = { path = "./src/core" }
mikomikagi-lib = { path = "./src/lib" }
## ---------------------- CLI/Parsing ----------------------- ##
clap = { version = "4.5.16", features = ["unicode", "wrap_help", "cargo"] }
clap_complete = "4.5.23"
crossterm = "0.28.1"
simple_logger = "5.0.0"
log = "0.4.22"
time = { version = "*", features = ["formatting"] }
thiserror = "*"
dirs = "*"
## ------------------Serialization/Encoding ----------------- ##
borsh = { version = "*", features = ["derive"] }
pem = "3.0.4"
hex = "*"
base64 = "*"
bytemuck = { version = "*", features = ["derive"] }
## ------------------------ Database ------------------------ ##
heed = "0.20.5"
## ---------------------- Cryptography ---------------------- ##
### Post-Quantum schemes
pqcrypto-falcon = "0.3.0"
pqcrypto-mlkem = "0.1.0"
pqcrypto-mldsa = "0.1.0"
pqcrypto-sphincsplus = "0.7.0"
pqcrypto-traits = "0.3.5"
slh-dsa = "0.1.0"
### Encryption at rest
argon2 = "*"
blake3 = { version = "*", default-features = false }
chacha20poly1305 = "0.10.1"
aes-gcm = "0.10.3"
### Utils
zalloc = "0.1.0"
zeroize = { version = "1.8.1", features = ["zeroize_derive"] }
rand = "*"