- 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
531 B
TOML
24 lines
531 B
TOML
[package]
|
|
name = "stub"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
common = { path = "../common" }
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
toml = "0.8"
|
|
dirs = "5.0"
|
|
log = "0.4"
|
|
env_logger = "0.11"
|
|
thiserror = "1.0"
|
|
sha2 = "0.10"
|
|
hex = "0.4"
|
|
base64 = "0.21"
|
|
rand = "0.8"
|
|
anyhow = "1.0"
|
|
ed25519-dalek = "2.1"
|
|
whoami = "1.5"
|
|
tokio = { version = "1.37", features = ["rt-multi-thread", "macros", "time"] }
|