- Workspace: common (protocol/crypto/tarball), server (axum+rustls), stub (registration, poll, verify-before-execute) - Ed25519 payload signing + request-signature auth on /poll, /report - flate2/miniz_oxide pure-Rust tarball, no system deps - CI matrix: linux musl x86_64/aarch64, windows x86_64 - Compiles clean: cargo build --workspace, 0 errors 0 warnings
24 lines
560 B
TOML
24 lines
560 B
TOML
[package]
|
|
name = "server"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
axum = "0.7"
|
|
axum-server = { version = "0.7", features = ["tls-rustls"] }
|
|
tokio = { version = "1.37", features = ["rt-multi-thread", "macros"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
common = { path = "../common" }
|
|
thiserror = "1.0"
|
|
toml = "0.8"
|
|
sha2 = "0.10"
|
|
ed25519-dalek = "2.1"
|
|
hex = "0.4"
|
|
rand = "0.8"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
rustls = "0.23"
|
|
rustls-pemfile = "2.0"
|
|
parking_lot = "0.12"
|