-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (49 loc) · 1.26 KB
/
Cargo.toml
File metadata and controls
52 lines (49 loc) · 1.26 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
[workspace]
members = ["crates/*"]
exclude = ["determin"]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["CipherOcto"]
license = "MIT OR Apache-2.0"
[workspace.dependencies]
# Async runtime
tokio = { version = "1.35", features = ["full"] }
# CLI parsing
clap = { version = "4.5", features = ["derive"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Networking (future libp2p integration)
libp2p = { version = "0.56", features = ["tokio", "noise", "tcp", "yamux"] }
# Local database (proto-blockchain state)
sled = "0.34"
# UUID generation
uuid = { version = "1.6", features = ["v4", "serde"] }
# Cryptography
sha2 = "0.10"
# Async traits
async-trait = "0.1"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Error handling
anyhow = "1.0"
thiserror = "2.0"
# HTTP/HTTPS server
hyper = { version = "1.3", features = ["full"] }
hyper-util = { version = "0.1", features = ["full"] }
http = "1"
http-body-util = "0.1"
# TLS for HTTPS
rustls = "0.23"
rustls-pemfile = "2.1"
# HTTP client for forwarding
reqwest = { version = "0.13", features = ["json"] }
# Config file handling
directories = "6"
# Async mutex
parking_lot = "0.12"
# Random number generation
rand = "0.9"