42 lines
1.4 KiB
TOML
42 lines
1.4 KiB
TOML
[package]
|
|
name = "server"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
axum = "0.7.5"
|
|
axum-extra = { version = "0.9.3", features = ["typed-header"] }
|
|
axum-macros = "0.4.1"
|
|
clap = { version = "4.5.18", features = ["derive"] }
|
|
derivative = "2.2.0"
|
|
eyre = "0.6.11"
|
|
frost-core = { version = "2.0.0-rc.0", features = ["serde"] }
|
|
frost-rerandomized = { version = "2.0.0-rc.0", features = ["serde"] }
|
|
password-auth = "1.0.0"
|
|
rand = "0.8"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serdect = { version = "0.2.0" }
|
|
serde_json = "1.0.124"
|
|
sqlx = { version = "0.8.2", features = ["sqlite", "time", "runtime-tokio", "uuid"] }
|
|
tokio = { version = "1.40", features = ["full"] }
|
|
tower-http = { version = "0.5.2", features = ["trace"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
uuid = { version = "1.10.0", features = ["v4", "fast-rng", "serde"] }
|
|
|
|
[dev-dependencies]
|
|
axum-test = "15.2.0"
|
|
frost-ed25519 = { version = "2.0.0-rc.0", features = ["serde"] }
|
|
reddsa = { git = "https://github.com/ZcashFoundation/reddsa.git", rev = "4d8c4bb337231e6e89117334d7c61dada589a953", features = [
|
|
"frost",
|
|
"serde",
|
|
] }
|
|
reqwest = { version = "0.12.7", features = ["json"] }
|
|
regex = "1.10.6"
|
|
coordinator = { path = "../coordinator" }
|
|
|
|
[features]
|
|
default = []
|