Stream bounded provider logs and surface provisioning phases through telemetry and the dashboard. Preserve offer-search criteria, use live relay endpoints for remote bootstrap, and add GPU smoke coverage. Exercise orchestrator crash recovery and clean completed checkpoints without dropping active work.
25 lines
511 B
TOML
25 lines
511 B
TOML
[package]
|
|
name = "swactor-vastai"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = "AGPL-3.0-only"
|
|
publish = false
|
|
|
|
|
|
[features]
|
|
default = []
|
|
test-support = []
|
|
[dependencies]
|
|
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
swactor-engine = { path = "../../crates/engine" }
|
|
tokio.workspace = true
|
|
urlencoding = "2"
|
|
|
|
[dev-dependencies]
|
|
swactor = { path = "../.." }
|
|
wiremock = "0.6"
|
|
|
|
[lints]
|
|
workspace = true
|