[package]
edition = "2024"
rust-version = "1.93.0"
name = "rustpython-derive-impl"
version = "0.5.0"
authors = ["RustPython Team"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust language extensions and macros specific to rustpython."
readme = false
license = "MIT"
repository = "https://github.com/RustPython/RustPython"
resolver = "2"
[lib]
name = "rustpython_derive_impl"
path = "src/lib.rs"
[dependencies.itertools]
version = "0.14.0"
[dependencies.maplit]
version = "1.0.2"
[dependencies.proc-macro2]
version = "1.0.105"
[dependencies.quote]
version = "1.0.45"
[dependencies.rustpython-compiler-core]
version = "0.5.0"
[dependencies.rustpython-doc]
version = "0.5.0"
[dependencies.syn]
version = "2"
features = [
"full",
"extra-traits",
]
[dependencies.syn-ext]
version = "0.5.0"
features = ["full"]
[dependencies.textwrap]
version = "0.16.1"
default-features = false
[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"