mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-18 09:31:09 +00:00

In hindsight, `ruff_python` is too general. A good giveaway is that it's actually a prefix of some other crates. The intent of this crate is to reimplement pieces of the Python standard library and CPython itself, so `ruff_python_stdlib` feels appropriate.
13 lines
258 B
TOML
13 lines
258 B
TOML
[package]
|
|
name = "ruff_python_stdlib"
|
|
version = "0.0.0"
|
|
publish = false
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
|
|
[lib]
|
|
|
|
[dependencies]
|
|
once_cell = { workspace = true }
|
|
regex = { workspace = true }
|
|
rustc-hash = { workspace = true }
|