[package]
name = "python-type-hints-checker"
version = "0.1.0"
edition = "2021"
description = "Checks Python files for missing type hints in function parameters and return values."
license = "MIT"
readme = "README.md"
[[bin]]
name = "pythcheck"
path = "src/main.rs"
[profile.dev]
opt-level = 0
overflow-checks = false
debug = 2
[dependencies]
clap = { version = "4.4.2", features = ["derive"] }
rayon = "1.7.0"
tree-sitter = "0.20.10"
tree-sitter-python = "0.20.4"
tree-sitter-traversal = "0.1.2"
walkdir = "2.3.3"