[package]
edition = "2021"
name = "testing-conventions"
version = "0.0.6"
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 = "config_loader"
path = "tests/config_loader.rs"
[[test]]
name = "unit_location"
path = "tests/unit_location.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.toml]
version = "0.8"