-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
61 lines (50 loc) · 1.3 KB
/
Cargo.toml
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
[workspace.package]
version = "0.1.0"
edition = "2021"
rust-version = "1.81"
license = "MIT"
homepage = "https://github.com/TheDhejavu/gossipod"
repository = "https://github.com/TheDhejavu/gossipod"
authors = ["Ayodeji Akinola <[email protected]>"]
[workspace]
members = [
"gossipod",
"gossipod-runtime",
"examples/*",
]
resolver = "2"
[profile.release]
debug = true
[workspace.dependencies]
# Gossipod
gossipod = { path = "./gossipod" }
gossipod-runtime = { path = "./gossipod-runtime" }
# Serialize and Deserialize
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79"
bincode = "1.3"
# Error Handling
anyhow = { version = "1.0.56", features = ["backtrace"] }
# Async
tokio = { version = "1.0", features = ["full"] }
futures = "0.3"
tokio-util = { version = "0.7.1", features = ["codec"] }
async-trait = "0.1.81"
# Data Structures
uuid = { version = "1.2.1", features = ["serde", "v4"] }
dashmap = "6.0.1"
parking_lot = "0.12.3"
bytes = "1.7.1"
crossbeam = "0.8.4"
# Logging and Tracing
env_logger = "0.11.3"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.10", features = ["env-filter"] }
# System Information
gethostname = "0.5.0"
sysinfo = "0.31.2"
# Command Line Interface
clap = { version = "4.3", features = ["derive"] }
# Misc
rand = "0.8.5"
pin-project = "1.1.5"