mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-03 18:28:56 +00:00

This is pretty much just moving to the new API and taking care to use byte offsets. This is *almost* enough. The next commit will fix a bug involving the handling of unprintable characters as a result of switching to byte offsets.
39 lines
1 KiB
TOML
39 lines
1 KiB
TOML
[package]
|
|
name = "ruff_python_parser"
|
|
version = "0.0.0"
|
|
publish = false
|
|
authors = ["Charlie Marsh <charlie.r.marsh@gmail.com>", "RustPython Team"]
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
homepage = { workspace = true }
|
|
documentation = { workspace = true }
|
|
repository = { workspace = true }
|
|
license = { workspace = true }
|
|
|
|
[lib]
|
|
|
|
[dependencies]
|
|
ruff_python_ast = { workspace = true }
|
|
ruff_python_trivia = { workspace = true }
|
|
ruff_text_size = { workspace = true }
|
|
|
|
bitflags = { workspace = true }
|
|
bstr = { workspace = true }
|
|
compact_str = { workspace = true }
|
|
memchr = { workspace = true }
|
|
rustc-hash = { workspace = true }
|
|
static_assertions = { workspace = true }
|
|
unicode-ident = { workspace = true }
|
|
unicode_names2 = { workspace = true }
|
|
unicode-normalization = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
ruff_annotate_snippets = { workspace = true }
|
|
ruff_source_file = { workspace = true }
|
|
|
|
anyhow = { workspace = true }
|
|
insta = { workspace = true, features = ["glob"] }
|
|
walkdir = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|