-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (36 loc) · 1.04 KB
/
Copy pathCargo.toml
File metadata and controls
38 lines (36 loc) · 1.04 KB
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
37
38
[package]
name = "certifier"
version = "0.8.5"
edition = "2021"
[dependencies]
axum = "0.8.4"
serde = { version = "1.0.219", features = ["derive"] }
tokio = { version = "1.48", features = [
"rt-multi-thread",
"macros",
"sync",
"time",
] }
post-rs = { path = "../" }
serde_with = { version = "3.12.0", features = ["base64", "hex"] }
ed25519-dalek = { version = "2.1.1", features = ["rand_core"] }
clap = { version = "4.5.38", features = ["derive", "env"] }
hex = "0.4.3"
config = "0.15.11"
tracing = { version = "0.1.41", features = ["log"] }
tracing-log = "0.2.0"
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
rand = "0.8.5"
serde_json = "1.0.140"
base64 = "0.22.1"
axum-prometheus = "0.8.0"
tower = { version = "0.5.2", features = ["limit", "load-shed", "buffer"] }
duration-str = { version = "0.12.0", default-features = false, features = [
"serde",
"time",
] }
parity-scale-codec = { version = "3.7.4", features = ["derive", "serde"] }
mockall = "0.13.1"
[dev-dependencies]
axum-test = "17.3.0"
tempfile = "3.20.0"