-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (46 loc) · 1.2 KB
/
Cargo.toml
File metadata and controls
48 lines (46 loc) · 1.2 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
[package]
name = "nebula"
version = "0.1.0"
edition = "2024"
license-file = "LICENSE"
[dependencies]
prost = "0.13"
prost-types = "0.13"
serde = { version = "1.0", features = ["derive"] }
chrono = { version = "0.4", features = ["serde"] }
ed25519-dalek = "2.1.1"
tendermint-p2p = "0.40.4"
ed25519-consensus = "2.1.0"
rand_core = { version = "0.6.4", features = ["std"]}
toml = "0.8.22"
base64 = "0.22.1"
log = { version = "0.4.27", features = ["kv","kv_std"] }
env_logger = "0.11.8"
thiserror = "2.0.12"
hex = "0.4.3"
serde_json = "1.0.140"
reqwest = { version = "0.12.19", default-features = false, features = ["blocking", "json", "rustls-tls"] }
k256 = { version = "0.10", features = ["ecdsa"] }
blst = "0.3"
bls-signatures = "0.15.0"
raft = "0.7.0"
bytes = "1.10.1"
slog = "2.7.0"
slog-async = "2.8.0"
slog-term = "2.9.1"
bincode = "1.3.0"
anyhow = "1.0.98"
tiny_http = "0.12.0"
rand = "0.9.1"
rocksdb = "0.23.0"
raft-proto = { version = "0.7.0", features = ["prost", "protobuf-codec"] }
slog-stdlog = "4.1.1"
protobuf = "2.28.0"
byteorder = "1.5.0"
enum_dispatch = "0.3.13"
clap = { version = "4.5.45", features = ["derive"] }
sha2 = "0.10.9"
[build-dependencies]
prost-build = "0.13"
[dev-dependencies]
tempfile = "3.20.0"