forked from domo-iot/libp2p-rust-dht
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
39 lines (32 loc) · 947 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
38
39
[package]
name = "sifis-dht-broker"
version = "0.1.0"
edition = "2021"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
vendored = ["reqwest/native-tls-vendored", "sifis-dht/vendored"]
[dependencies]
axum = { version = "0.6", features = ["ws"] }
clap = { version = "4.1.1", features = ["derive"] }
env_logger = "0.10.0"
futures = "0.3.21"
futures-util = "0.3.21"
jsonpath_lib = "0.3.0"
log = "0.4.17"
rand = "0.8"
serde = "1.0.137"
serde_json = "1.0"
sifis-dht = { path = "./dht-cache" }
sifis-config = { path = "./dht-config" }
time = "0.3.17"
tokio = { version = "1.19.0", features = ["full"] }
tokio-tungstenite = "0.19"
tower-http = { version = "0.4.0", features = ["cors"] }
url = "2.2.2"
[target.'cfg(unix)'.dependencies]
nix = "0.26"
[dev-dependencies]
reqwest = { version = "0.11.10", features = ["json"] }
[workspace]
members = ["dht-cache", "dht-config"]