[package]
name = "testing-conventions"
version = "0.0.21"
edition = "2021"
license = "MIT"
authors = ["Kevin Scott <me@thekevinscott.com>"]
repository = "https://github.com/thekevinscott/testing-conventions"
description = "Enforce testing conventions in libraries (Python, TypeScript, and Rust)."
[lib]
name = "testing_conventions"
path = "src/lib.rs"
[[bin]]
name = "testing-conventions"
path = "src/main.rs"
[dependencies]
clap = { version = "4.5", features = ["derive"] }
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
rustpython-parser = "0.4.0"
rustpython-ast = { version = "0.4.0", features = ["visitor"] }
oxc = { version = "0.136.0", features = ["ast_visit"] }
syn = { version = "2", features = ["full", "visit"] }
proc-macro2 = { version = "1", features = ["span-locations"] }
zip = { version = "2", default-features = false, features = ["deflate"] }