-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
27 lines (26 loc) · 851 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
[package]
name = "frost-federation"
version = "0.1.0"
edition = "2021"
[dependencies]
clap = { version = "4.5.4", features = ["derive"] }
tokio = { version = "1", features = ["rt", "net", "macros", "rt-multi-thread", "tracing", "io-util"] }
tokio-util = { version = "0.7.0", features = ["full"] }
tokio-stream = { version = "0.1" }
toml = "0.8.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
serde = { version = "1.0.188", features = ["derive"] }
serde_derive = "1.0.188"
futures = "0.3.30"
snow = "0.9.6"
ed25519-dalek = { version = "2.1.1", features = ["pkcs8", "pem"] }
flexbuffers = "2.0.0"
mockall = "0.12.1"
mockall_double = "0.3.1"
tokio-test = "0.4.4"
tower = {version = "0.5.1", features=["util", "steer", "timeout"] }
pin-project = "1.1.5"
frost-secp256k1 = "2.0.0"
rand_core = "0.6.4"
rand = "0.8.5"