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.
20 lines
434 B
TOML
20 lines
434 B
TOML
[build-system]
|
|
requires = ["maturin>=1.7,<2"]
|
|
build-backend = "maturin"
|
|
|
|
[project]
|
|
name = "swactor"
|
|
version = "0.1.0"
|
|
requires-python = ">=3.9"
|
|
|
|
[dependency-groups]
|
|
dev = ["jupyter", "ipykernel", "maturin>=1.7,<2", "pytest", "pytest-timeout"]
|
|
|
|
[tool.uv]
|
|
cache-keys = [
|
|
{ file = "pyproject.toml" },
|
|
{ file = "Cargo.toml" },
|
|
{ file = "src/**/*.rs" },
|
|
{ file = "../../Cargo.toml" },
|
|
{ file = "../../src/**/*.rs" },
|
|
]
|