-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
78 lines (65 loc) · 1.5 KB
/
Cargo.toml
File metadata and controls
78 lines (65 loc) · 1.5 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
[workspace]
resolver = "2"
members = [
"crates/node",
"crates/core",
"crates/consensus",
"crates/network",
"crates/storage",
"crates/oracle",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["Databayt Community <community@databayt.org>"]
license = "MIT"
repository = "https://github.com/databayt/distributed-computer"
description = "Native infrastructure for justice-based contribution tracking"
[workspace.dependencies]
# Async runtime
tokio = { version = "1.40", features = ["full"] }
futures = "0.3"
async-trait = "0.1"
# P2P networking
libp2p = { version = "0.54", features = [
"kad",
"gossipsub",
"noise",
"tcp",
"yamux",
"identify",
"mdns",
"ping",
"relay",
"dcutr",
"autonat",
"dns",
"macros",
"tokio",
] }
# Storage
rocksdb = "0.22"
# Serialization
borsh = { version = "1.5", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# Cryptography
ed25519-dalek = { version = "2.1", features = ["serde", "rand_core"] }
sha2 = "0.10"
blake3 = "1.5"
# Error handling
thiserror = "1.0"
anyhow = "1.0"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# CLI
clap = { version = "4.5", features = ["derive"] }
# Time
chrono = { version = "0.4", features = ["serde"] }
# UUID
uuid = { version = "1.10", features = ["v4", "serde"] }
# HTTP client (for GitHub API)
reqwest = { version = "0.12", features = ["json"] }
# Git integration
git2 = "0.19"