-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (46 loc) · 1.52 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
[package]
name = "kognita"
version = "0.1.0"
edition = "2021"
[workspace]
members = ["crates/*"]
[[bin]]
name = "kognita-p2p"
path = "crates/p2p/src/main.rs"
bench = false
doc = false
test = false
[dependencies]
libp2p = { version = "0.51", features = ["tcp", "kad", "tokio", "identify", "quic", "async-std", "dns", "gossipsub", "mdns", "noise", "ping", "mplex", "yamux", "websocket", "ping", "macros"] }
futures = { version = "0.3.28" }
futures-core = { version = "0.3.28" }
futures-util = { version = "0.3.28" }
async-std = { version = "1.12.0", features = ["attributes"] }
tokio = { version = "1.28.1", features = ["full"] }
tokio-stream = { version = "0.1.14" }
rand = "0.8.5"
rand_core = { version = "0.6.4", default-features = false }
once_cell = "1.17.1"
ed25519-dalek = "2.0.0"
rand_chacha = "0.3.1"
clap = { version = "4.3.0", features=["cargo", "derive"] }
emojis = "0.6.0"
lipsum = "0.9.0"
# futures-ticker = "0.0.3"
log = "0.4.17"
pretty_env_logger = "0.5.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.96"
anyhow = "1.0"
dotenv = "0.15.0"
secp256k1 = { version = "0.27.0", features = ["rand"] }
web3 = "0.19.0"
tiny-keccak = { version = "2.0.2", features = ["sha3"] }
openssl = { version = "0.10", features = ["vendored"] }
aes-gcm = "0.10.2"
toml = "0.8.0"
dirs = "5.0.1"
tonic = "0.10.0"
prost = "0.12.0"
[build-dependencies]
tonic-build = { version = "0.10.0", features = ["prost"] }