mirror of
https://github.com/astral-sh/ruff.git
synced 2025-11-14 09:45:38 +00:00
<!-- Thank you for contributing to Ruff! To help us out with reviewing, please consider the following: - Does this pull request include a summary of the change? (See below.) - Does this pull request include a descriptive title? - Does this pull request include references to any relevant issues? --> ## Summary When I was looking at the v0.2.0 release, this method showed up in a CodSpeed regression (we were calling it more), so I decided to quickly look at speeding it up. @BurntSushi suggested using Aho-Corasick, and it looks like it's about 7 or 8x faster: ```text Parser/AhoCorasick time: [8.5646 ns 8.5914 ns 8.6191 ns] Parser/Iterator time: [64.992 ns 65.124 ns 65.271 ns] ``` ## Test Plan `cargo test`
38 lines
989 B
TOML
38 lines
989 B
TOML
[package]
|
|
name = "ruff_python_ast"
|
|
version = "0.0.0"
|
|
publish = false
|
|
authors = { workspace = true }
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
homepage = { workspace = true }
|
|
documentation = { workspace = true }
|
|
repository = { workspace = true }
|
|
license = { workspace = true }
|
|
|
|
[lib]
|
|
|
|
[dependencies]
|
|
ruff_python_trivia = { path = "../ruff_python_trivia" }
|
|
ruff_source_file = { path = "../ruff_source_file" }
|
|
ruff_text_size = { path = "../ruff_text_size" }
|
|
|
|
aho-corasick = { workspace = true }
|
|
bitflags = { workspace = true }
|
|
is-macro = { workspace = true }
|
|
itertools = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
rustc-hash = { workspace = true }
|
|
serde = { workspace = true, optional = true }
|
|
smallvec = { workspace = true }
|
|
static_assertions = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
insta = { workspace = true }
|
|
ruff_python_parser = { path = "../ruff_python_parser" }
|
|
|
|
[features]
|
|
serde = ["dep:serde", "ruff_text_size/serde"]
|
|
|
|
[lints]
|
|
workspace = true
|