-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
25 lines (24 loc) · 825 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
[package]
name = "cometbft-handshake"
version = "0.1.0"
edition = "2021"
[dependencies]
tokio = { version = "1.35", features = [
"rt-multi-thread",
"macros",
"io-util",
"net",
] }
rand_core = { version = "0.6", default-features = false, features = ["std"] }
ed25519-consensus = { version = "2.1", default-features = false }
curve25519-dalek-ng = { version = "4.1", default-features = false }
merlin = { version = "2" }
subtle = { version = "2", default-features = false }
zeroize = { version = "1", default-features = false }
hkdf = { version = "0.12", default-features = false }
sha2 = { version = "0.10", default-features = false }
chacha20poly1305 = { version = "0.10", default-features = false, features = [
"reduced-round",
] }
tendermint-proto = "0.34"
prost = { version = "0.12", default-features = false }