-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
26 lines (25 loc) · 885 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
[package]
name = "frost-federation"
version = "0.1.0"
edition = "2021"
[dependencies]
clap = { version = "4.5.4", features = ["derive"] }
env_logger = "0.10.1"
log = "0.4.20"
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.1", default-features = false, features = ["fmt", "ansi", "env-filter", "tracing-log"] }
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"