-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (44 loc) · 1.08 KB
/
Cargo.toml
File metadata and controls
50 lines (44 loc) · 1.08 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
[package]
name = "ferrous-node"
version = "0.1.0"
edition = "2021"
authors = ["Chronocoder"]
description = "A next-generation, memory-safe Layer 1 blockchain engineered in Rust with modular architecture and P2P recovery."
license = "MIT"
repository = "https://github.com/ChronoCoders/ferrous"
keywords = ["blockchain", "rust", "cryptocurrency", "layer1", "p2p"]
[dependencies]
sha2 = "0.10"
secp256k1 = { version = "0.29", features = ["global-context", "rand"] }
rand = "0.8"
num-bigint = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tiny_http = "0.12"
hex = "0.4"
clap = { version = "4.5", features = ["derive"] }
ratatui = "0.26"
crossterm = "0.27"
sysinfo = "0.30"
rayon = "1.10"
num_cpus = "1.16"
rocksdb = "0.22"
bincode = "1.3"
bs58 = "0.5"
ripemd = "0.1"
log = "0.4"
env_logger = "0.10"
tempfile = "3.10"
chrono = "0.4"
lru = "0.12"
[dev-dependencies]
criterion = "0.5"
[profile.dev]
overflow-checks = true
[profile.release]
overflow-checks = true
[profile.dev.package.librocksdb-sys]
opt-level = 3
[[example]]
name = "monitor"
path = "examples/monitor.rs"