- Add openssl dependency with vendored feature - Fixes CI build for mips-unknown-linux-musl target - Statically links OpenSSL instead of requiring system package - Resolves openssl-sys build failures in cross-compile environment
32 lines
1.1 KiB
TOML
32 lines
1.1 KiB
TOML
[package]
|
|
name = "backend"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
axum = { version = "0.8", features = ["macros", "ws"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
tower = { version = "0.4", features = ["util", "timeout"] }
|
|
tower-http = { version = "0.5", features = ["fs", "trace", "cors", "compression-full"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
tokio-stream = "0.1"
|
|
bytes = "1"
|
|
futures = "0.3"
|
|
quick-xml = { version = "0.31", features = ["serde", "serialize"] }
|
|
# We might need `tokio-util` for codecs if we implement SCGI manually
|
|
tokio-util = { version = "0.7", features = ["codec", "io"] }
|
|
clap = { version = "4.4", features = ["derive", "env"] }
|
|
rust-embed = "8.2"
|
|
mime_guess = "2.0"
|
|
shared = { path = "../shared" }
|
|
thiserror = "2.0.18"
|
|
dotenvy = "0.15.7"
|
|
utoipa = { version = "5.4.0", features = ["axum_extras"] }
|
|
utoipa-swagger-ui = { version = "9.0.2", features = ["axum"] }
|
|
web-push = "0.10"
|
|
base64 = "0.22"
|
|
openssl = { version = "0.10", features = ["vendored"] }
|