Deny workspace warnings and lint suppressions, consolidate Rust and Python coverage under cargo xtask test with 60-second per-test limits, and remove stale flaky, stateful, Docker, and orphaned test artifacts.
23 lines
432 B
TOML
23 lines
432 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"
|
|
tokio.workspace = true
|
|
urlencoding = "2"
|
|
|
|
[dev-dependencies]
|
|
wiremock = "0.6"
|
|
|
|
[lints]
|
|
workspace = true
|