-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
79 lines (71 loc) · 1.75 KB
/
Copy pathCargo.toml
File metadata and controls
79 lines (71 loc) · 1.75 KB
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
[workspace]
# Workspace configuration for BitQuan blockchain
resolver = "2"
members = [
"crates/node",
"crates/types",
"crates/crypto",
"crates/consensus",
"crates/mempool",
"crates/network",
"crates/pqc-dilithium-seeded",
"crates/storage",
"crates/rpc", "crates/wallet",
"crates/bq-sdk",
"crates/faucet",
"crates/tools/preflight",
"crates/tools/stress", "crates/bitquan-cli",
]
exclude = ["fuzz", "forks", "tools/bitquan-gui"]
[workspace.package]
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/AlphaB135/BitQuan"
rust-version = "1.82"
description = "BitQuan blockchain node and supporting crates with post-quantum cryptography focus."
[workspace.lints.rust]
unsafe_code = "forbid"
unused_extern_crates = "warn"
unused_import_braces = "warn"
unused_qualifications = "warn"
unused_results = "warn"
[workspace.lints.clippy]
all = "warn"
nursery = "warn"
pedantic = "warn"
[workspace.dependencies]
clap = { version = "4.5", features = ["derive"] }
bytes = "1.11.1" # RUSTSEC-2026-0007: warp 0.4.2 uses 1.11.0 (vulnerable)
hex = "0.4"
rocksdb = "0.24"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["arbitrary_precision"] }
sha2 = "0.10"
subtle = "2.6"
thiserror = "2.0"
zeroize = "1.8"
http = "0.2"
rand = "0.8"
rand_chacha = "0.3"
criterion = "0.5"
secrecy = "0.8"
tokio = { version = "1", features = ["full"] }
prometheus = "0.13"
async-trait = "0.1"
lazy_static = "1.4"
rayon = "1.12"
log = "0.4"
zstd = "0.13"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true
debug = false
[profile.dev.package."*"]
opt-level = 3
[profile.dev.package.bq-crypto]
opt-level = 1
[profile.dev.package.pqc-dilithium-seeded]
opt-level = 1