Files
ruff/Cargo.toml
2022-08-13 11:57:27 -04:00

27 lines
852 B
TOML

[package]
name = "rust-python-linter"
version = "0.0.7"
edition = "2021"
[lib]
name = "rust_python_linter"
crate-type = ["cdylib", "lib"]
[dependencies]
anyhow = { version = "1.0.60" }
bincode = { version = "1.3.3" }
cacache = { version = "10.0.1" }
chrono = { version = "0.4.21" }
clap = { version = "3.2.16", features = ["derive"] }
clearscreen = { version = "1.0.10" }
colored = { version = "2.0.0" }
fern = { version = "0.6.1" }
log = { version = "0.4.17" }
notify = { version = "4.0.17" }
rayon = { version = "1.5.3" }
rustpython-parser = { git = "https://github.com/RustPython/RustPython.git", rev = "dff916d45c5d13074d21ad329a5ab68a6499426a" }
serde = { version = "1.0.143", features = ["derive"] }
serde_json = { version = "1.0.83" }
walkdir = { version = "2.3.2" }
pyo3 = { version = "0.16.5", features = ["extension-module", "abi3-py37"] }