[package]
edition = "2024"
rust-version = "1.92"
name = "rustpython-ruff_python_parser"
version = "0.15.8"
authors = [
"Charlie Marsh <charlie.r.marsh@gmail.com>",
"RustPython Team",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Unofficial fork for RustPython"
homepage = "https://docs.astral.sh/ruff"
documentation = "https://docs.astral.sh/ruff"
readme = "README.md"
license = "MIT"
repository = "https://github.com/astral-sh/ruff"
resolver = "2"
[lib]
name = "rustpython_ruff_python_parser"
path = "src/lib.rs"
[[test]]
name = "fixtures"
path = "tests/fixtures.rs"
harness = false
[[test]]
name = "generate_inline_tests"
path = "tests/generate_inline_tests.rs"
[dependencies.bitflags]
version = "2.5.0"
[dependencies.bstr]
version = "1.9.1"
[dependencies.compact_str]
version = "0.9.0"
[dependencies.get-size2]
version = "0.7.3"
features = [
"derive",
"smallvec",
"hashbrown",
"compact-str",
"ordermap",
]
[dependencies.memchr]
version = "2.7.1"
[dependencies.ruff_python_ast]
version = "0.15.8"
features = ["get-size"]
package = "rustpython-ruff_python_ast"
[dependencies.ruff_python_trivia]
version = "0.15.8"
package = "rustpython-ruff_python_trivia"
[dependencies.ruff_text_size]
version = "0.15.8"
features = ["get-size"]
package = "rustpython-ruff_text_size"
[dependencies.rustc-hash]
version = "2.0.0"
[dependencies.static_assertions]
version = "1.1.0"
[dependencies.unicode-ident]
version = "1.0.12"
[dependencies.unicode-normalization]
version = "0.1.23"
[dependencies.unicode_names2]
version = "1.2.2"
[dev-dependencies.anyhow]
version = "1.0.80"
[dev-dependencies.datatest-stable]
version = "0.3.3"
[dev-dependencies.insta]
version = "1.35.1"
[dev-dependencies.itertools]
version = "0.14.0"
[dev-dependencies.ruff_python_ast]
version = "0.15.8"
features = ["serde"]
package = "rustpython-ruff_python_ast"
[dev-dependencies.ruff_source_file]
version = "0.15.8"
package = "rustpython-ruff_source_file"
[dev-dependencies.serde]
version = "1.0.197"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1.0.113"
[dev-dependencies.walkdir]
version = "2.3.2"
[lints.clippy]
char_lit_as_u8 = "allow"
collapsible_else_if = "allow"
collapsible_if = "allow"
dbg_macro = "warn"
debug_assert_with_mut_call = "warn"
disallowed_methods = "allow"
empty_drop = "warn"
empty_structs_with_brackets = "warn"
exit = "warn"
get_unwrap = "warn"
if_not_else = "allow"
ignore_without_reason = "allow"
implicit_hasher = "allow"
large_stack_arrays = "allow"
map_unwrap_or = "allow"
match_same_arms = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_continue = "allow"
needless_raw_string_hashes = "allow"
print_stderr = "warn"
print_stdout = "warn"
rc_buffer = "warn"
rc_mutex = "warn"
redundant_clone = "warn"
rest_pat_in_fully_bound_structs = "warn"
similar_names = "allow"
single_match_else = "allow"
too_many_lines = "allow"
unnecessary_debug_formatting = "allow"
unused_peekable = "warn"
[lints.clippy.pedantic]
level = "warn"
priority = -2
[lints.rust]
unreachable_pub = "warn"
unsafe_code = "warn"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = [
"cfg(fuzzing)",
"cfg(codspeed)",
]