[package]
edition = "2024"
rust-version = "1.93.0"
name = "rustpython-compiler"
version = "0.5.0"
authors = ["RustPython Team"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A usability wrapper around rustpython-parser and rustpython-compiler-core"
readme = false
license = "MIT"
repository = "https://github.com/RustPython/RustPython"
resolver = "2"
[lib]
name = "rustpython_compiler"
path = "src/lib.rs"
[dependencies.ruff_python_ast]
version = "0.15.8"
package = "rustpython-ruff_python_ast"
[dependencies.ruff_python_parser]
version = "0.15.8"
package = "rustpython-ruff_python_parser"
[dependencies.ruff_source_file]
version = "0.15.8"
package = "rustpython-ruff_source_file"
[dependencies.ruff_text_size]
version = "0.15.8"
package = "rustpython-ruff_text_size"
[dependencies.rustpython-codegen]
version = "0.5.0"
[dependencies.rustpython-compiler-core]
version = "0.5.0"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies]
[lints.clippy]
alloc_instead_of_core = "warn"
complexity = "warn"
correctness = "warn"
perf = "warn"
std_instead_of_alloc = "warn"
std_instead_of_core = "warn"
style = "warn"
suspicious = "warn"
[lints.rust]
elided_lifetimes_in_paths = "warn"
unsafe_code = "allow"
unsafe_op_in_unsafe_fn = "deny"