kademlia-exporter/Cargo.toml

32 lines
1011 B
TOML
Raw Permalink Normal View History

2019-11-29 22:44:08 +01:00
[package]
name = "kademlia-exporter"
2019-11-29 22:44:08 +01:00
version = "0.1.0"
authors = ["Max Inden <mail@max-inden.de>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
async-std = "1.0"
2020-04-24 19:34:27 +02:00
cidr = "0.1"
2020-05-20 17:38:19 +03:00
csv = "1.1.3"
2019-11-29 22:44:08 +01:00
env_logger = "0.7.1"
2020-05-20 17:38:19 +03:00
futures = "0.3.5"
libp2p = { git = "https://github.com/fluencelabs/rust-libp2p", branch = "trust_graph_libp2p_git_fix" }
libp2p-kad = { git = "https://github.com/fluencelabs/rust-libp2p", branch = "trust_graph_libp2p_git_fix" }
trust-graph = { git = "https://github.com/fluencelabs/fluence", branch = "trust_graph_libp2p_git_fix" }
log = "0.4.1"
2020-05-21 12:43:54 +03:00
prometheus = "0.9.0"
2019-11-29 22:44:08 +01:00
void = "1.0.2"
2020-04-07 23:11:13 +02:00
tide = "0.6"
2020-04-10 11:50:11 +02:00
exit-future = "0.2"
ctrlc = "3"
2020-04-12 00:51:33 +02:00
structopt = "0.3"
futures-timer = "3"
maxminddb = "*"
2020-05-20 17:38:19 +03:00
serde = "1.0.110"
2019-11-29 22:44:08 +01:00
# [patch."https://github.com/mxinden/rust-libp2p"]
# libp2p = { path = "/home/mxinden/code/github.com/libp2p/rust-libp2p" }
# libp2p-kad = { path = "/home/mxinden/code/github.com/libp2p/rust-libp2p/protocols/kad" }