-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
36 lines (33 loc) · 956 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
28
29
30
31
32
33
34
35
36
[package]
name = "star-randsrv"
version = "0.2.0"
authors = ["Ralph Giles <rgiles@brave.com>"]
description = "STAR randomness webservice"
license = "MPL-2.0"
edition = "2021"
[dependencies]
axum = "0.7.5"
axum-prometheus = "0.7.0"
base64 = "0.22.1"
calendar-duration = "1.0.0"
clap = { version = "4.5.4", features = ["derive"] }
ppoprf = "0.3.1"
rlimit = "0.10"
serde = "1.0.200"
serde_json = "1.0.115"
thiserror = "1.0.58"
tikv-jemallocator = "0.5"
time = { version = "0.3.31", features = ["formatting", "parsing"] }
tokio = { version = "1.37.0", features = ["full"] }
tower-http = { version = "0.5.2", features = ["trace"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
[dev-dependencies]
curve25519-dalek = { version = "4.1.2", features = ["rand_core"] }
rand = { version = "0.8.5", features = ["getrandom"] }
tower = "0.4.13"
[profile.release]
lto = "thin"
panic = "abort"
strip = true
codegen-units = 1