-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (33 loc) · 989 Bytes
/
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
[package]
name = "melnet2"
version = "0.3.3"
edition = "2021"
description = "JSON-RPC/nanorpc-based, low-level auto-peering RPC protocol used throughout Themelio for peer-to-peer communciations"
license = "ISC"
repository = "https://github.com/themeliolabs/melnet2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.66"
async-trait = "0.1.58"
concurrent-queue = "1.2.4"
dashmap = "5.4.0"
fastrand = "1.8.0"
futures-util = "0.3.25"
itertools = "0.10.5"
log = "0.4.17"
lz4_flex = "0.9.5"
moka = "0.9.6"
nanorpc = "0.1.12"
nanorpc-http = "0.1.5"
# nanorpc-http = { git = "https://github.com/antidmg/nanorpc-http", branch = "new-with-proxy" }
pin-project = "1.0.12"
reusable-box-future = "0.2.0"
serde = { version = "1.0.147", features = ["derive"] }
serde_json = "1.0.89"
smol = "1.2.5"
smol-timeout = "0.6.0"
smol_str = "0.1.23"
smolscale = "0.3.49"
thiserror = "1.0.37"
[dev-dependencies]
env_logger = "0.8.4"