46 lines
1.5 KiB
TOML
46 lines
1.5 KiB
TOML
[package]
|
|
name = "radicle-httpd"
|
|
license = "MIT OR Apache-2.0"
|
|
version = "0.1.0"
|
|
authors = ["Alexis Sellier <alexis@radicle.xyz>"]
|
|
edition = "2021"
|
|
default-run = "radicle-httpd"
|
|
build = "../build.rs"
|
|
|
|
[features]
|
|
default = []
|
|
logfmt = [
|
|
"tracing-logfmt",
|
|
"tracing-subscriber/env-filter"
|
|
]
|
|
|
|
[dependencies]
|
|
anyhow = { version = "1" }
|
|
axum = { version = "0.5.16", default-features = false, features = ["json", "headers", "query"] }
|
|
axum-server = { version = "0.4.2", default-features = false }
|
|
chrono = { version = "0.4.22" }
|
|
ethers-core = { version = "1.0" }
|
|
fastrand = { version = "1.7.0" }
|
|
flate2 = { version = "1" }
|
|
hyper = { version = "0.14.17", default-features = false }
|
|
lexopt = { version = "0.2.1" }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = { version = "1", features = ["preserve_order"] }
|
|
siwe = { version = "0.5" }
|
|
thiserror = { version = "1" }
|
|
time = { version = "0.3.17" }
|
|
tokio = { version = "1.21", default-features = false, features = ["macros", "rt-multi-thread"] }
|
|
tower-http = { version = "0.3.4", default-features = false, features = ["trace", "cors", "set-header"] }
|
|
tracing = { version = "0.1.37", default-features = false, features = ["std", "log"] }
|
|
tracing-logfmt = { version = "0.2", optional = true }
|
|
tracing-subscriber = { version = "0.3", default-features = false, features = ["std", "ansi", "fmt"] }
|
|
|
|
[dependencies.radicle]
|
|
path = "../radicle"
|
|
version = "0.2.0"
|
|
|
|
[dependencies.radicle-surf]
|
|
git = "https://github.com/radicle-dev/radicle-git"
|
|
features = ["serde"]
|
|
rev = "79a94721366490053e2d8ac1c1afa14fb0c25f09"
|