-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (28 loc) · 906 Bytes
/
Copy pathCargo.toml
File metadata and controls
30 lines (28 loc) · 906 Bytes
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
[package]
name = "loom-node"
version = "0.1.0"
edition = "2021"
[dependencies]
async-trait = "0.1"
base64 = "0.22"
blake3 = "1.5"
futures = "0.3"
jsonrpc-core = "18.0"
jsonrpc-server-utils = "18.0"
libp2p = { version = "0.56", default-features = false, features = ["autonat", "dcutr", "ed25519", "gossipsub", "identify", "kad", "macros", "mdns", "noise", "relay", "request-response", "tcp", "tokio", "upnp", "yamux"] }
prometheus-client = "0.22"
prost = "0.14"
rusqlite = { version = "0.32", features = ["bundled"] }
tokio-rusqlite = "0.6"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
tokio = { version = "1", features = ["full", "test-util"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1.0", features = ["v4"] }
warp = "0.3"
[dev-dependencies]
proptest = "1.4"
tokio-test = "0.4"
tempfile = "3.10"