[package]
edition = "2024"
rust-version = "1.93.0"
name = "rustpython-doc"
version = "0.5.0"
authors = ["RustPython Team"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Python __doc__ database for RustPython"
readme = false
license-file = "LICENSE"
repository = "https://github.com/RustPython/RustPython"
resolver = "2"
[lib]
name = "rustpython_doc"
path = "src/lib.rs"
doctest = false
[dependencies.phf]
version = "0.13.1"
features = ["macros"]
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"