-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
68 lines (63 loc) · 2.23 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
62
63
64
65
66
67
68
[workspace]
members = [
"cli",
"bench-cli",
"subp2p-explorer",
"subp2p-explorer-core",
]
resolver = "2"
[workspace.package]
authors = ["Alexandru Vasile <[email protected]>"]
version = "0.1.0"
edition = "2021"
rust-version = "1.70.0"
description = "Submit extrinsics and explore substrate p2p network"
repository = "https://github.com/lexnv/subp2p-explorer"
homepage = "https://github.com/lexnv/subp2p-explorer"
license = "Apache-2.0 OR GPL-3.0"
keywords = ["peer-to-peer", "libp2p", "networking"]
categories = ["network-programming", "asynchronous"]
[workspace.dependencies]
tokio = { version = "1.28", features = ["macros", "time", "rt-multi-thread"] }
async-trait = "0.1"
env_logger = "0.10"
tracing-subscriber = { version = "0.3" }
tracing = "0.1.34"
futures = "0.3.28"
libp2p = { version = "0.52.0", features = ["dns", "identify", "kad", "macros", "mdns", "noise", "ping", "tcp", "tokio", "yamux", "websocket", "request-response"] }
libp2p-tls = "0.5.0"
libp2p-noise = "0.45.0"
libp2p-yamux = "0.46.0"
rand = "0.8.5"
fnv = "1.0.6"
log = "0.4.17"
either = "1.5.3"
void = "1.0"
pin-project = "1.0.12"
asynchronous-codec = "0.6"
unsigned-varint = { version = "0.7.1", features = ["futures", "asynchronous_codec"] }
thiserror = "1.0"
bytes = "1"
codec = { package = "parity-scale-codec", version = "3.4.0", features = ["derive"] }
primitive-types = { version = "0.12.1", default-features = false, features = ["codec", "scale-info", "serde"] }
hex = "0.4.3"
clap = { version = "4.4.4", features = ["derive", "cargo"] }
ip_network = "0.4.1"
maxminddb = "0.23.0"
serde_json = { version = "1.0.108" }
trust-dns-resolver = "0.23.0"
multihash-codetable = { version = "0.1.1", features = [
"digest",
"serde",
"sha2",
] }
jsonrpsee = { version = "0.21", features = ["async-client", "client-ws-transport-native-tls"] }
prost-build = "0.11"
litep2p = { version = "0.7.0", features = ["websocket"] }
multiaddr = { version = "0.18.1" }
multihash = { version = "0.19.1", default-features = false }
libp2p-identity = { version = "0.2.9" }
serde = "1.0"
#workspace crates:
subp2p-explorer = { version = "0.1.0", path = "subp2p-explorer", default-features = false }
subp2p-explorer-core = { version = "0.1.0", path = "subp2p-explorer-core", default-features = false }