[package]
edition = "2021"
name = "testing-conventions"
version = "0.0.21"
authors = ["Kevin Scott <me@thekevinscott.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Enforce testing conventions in libraries (Python, TypeScript, and Rust)."
readme = false
license = "MIT"
repository = "https://github.com/thekevinscott/testing-conventions"
[lib]
name = "testing_conventions"
path = "src/lib.rs"
[[bin]]
name = "testing-conventions"
path = "src/main.rs"
[[test]]
name = "colocated_test"
path = "tests/colocated_test.rs"
[[test]]
name = "colocated_test_e2e"
path = "tests/colocated_test_e2e.rs"
[[test]]
name = "config_loader"
path = "tests/config_loader.rs"
[[test]]
name = "coverage"
path = "tests/coverage.rs"
[[test]]
name = "coverage_e2e"
path = "tests/coverage_e2e.rs"
[[test]]
name = "coverage_ts"
path = "tests/coverage_ts.rs"
[[test]]
name = "coverage_ts_e2e"
path = "tests/coverage_ts_e2e.rs"
[[test]]
name = "integration_lint"
path = "tests/integration_lint.rs"
[[test]]
name = "integration_lint_e2e"
path = "tests/integration_lint_e2e.rs"
[[test]]
name = "isolation"
path = "tests/isolation.rs"
[[test]]
name = "isolation_e2e"
path = "tests/isolation_e2e.rs"
[[test]]
name = "packaging"
path = "tests/packaging.rs"
[[test]]
name = "packaging_e2e"
path = "tests/packaging_e2e.rs"
[[test]]
name = "packaging_wheel"
path = "tests/packaging_wheel.rs"
[[test]]
name = "packaging_wheel_e2e"
path = "tests/packaging_wheel_e2e.rs"
[[test]]
name = "ts_integration_lint"
path = "tests/ts_integration_lint.rs"
[[test]]
name = "ts_integration_lint_e2e"
path = "tests/ts_integration_lint_e2e.rs"
[[test]]
name = "unit_isolation"
path = "tests/unit_isolation.rs"
[[test]]
name = "unit_isolation_e2e"
path = "tests/unit_isolation_e2e.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.oxc]
version = "0.136.0"
features = ["ast_visit"]
[dependencies.proc-macro2]
version = "1"
features = ["span-locations"]
[dependencies.rustpython-ast]
version = "0.4.0"
features = ["visitor"]
[dependencies.rustpython-parser]
version = "0.4.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.syn]
version = "2"
features = [
"full",
"visit",
]
[dependencies.toml]
version = "0.8"
[dependencies.zip]
version = "2"
features = ["deflate"]
default-features = false