-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (32 loc) · 937 Bytes
/
Cargo.toml
File metadata and controls
35 lines (32 loc) · 937 Bytes
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
[package]
name = "entropy"
version = "0.1.0"
edition = "2021"
[profile.artifact]
inherits = "release"
panic = "abort"
# strip = true
# lto = true
# codegen-units = 1
[dependencies]
actix-web = "4.3.1"
actix-web-opentelemetry = { version = "0.15.0", features = ["awc"] }
awc = "3.1.1"
bincode = "1.3.3"
clap = { version = "4.3.23", features = ["derive"] }
ed25519-dalek = { version = "2.0.0", features = ["serde", "rand_core"] }
opentelemetry = { version = "0.20.0", features = ["rt-tokio"] }
opentelemetry-otlp = "0.13.0"
rand = "0.8.5"
serde = { version = "1.0.185", features = ["derive"] }
sha2 = "0.10.7"
tokio = { version = "1.32.0", features = ["full"] }
tokio-util = { version = "0.7.8", features = ["rt"] }
tracing = "0.1.37"
tracing-opentelemetry = "0.20.0"
tracing-subscriber = { version = "0.3.17", features = ["env-filter", "json"] }
wirehair = { version = "0.1.0", path = "wirehair" }
[workspace]
members = [
"beta"
]