[package]
edition = "2024"
rust-version = "1.98"
name = "kohebi-core"
version = "0.0.21"
authors = ["tamnd"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Values, shapes, collections, allocator, and garbage collector for the kohebi Python runtime"
homepage = "https://github.com/tamnd/kohebi"
readme = "README.md"
keywords = [
"python",
"runtime",
"interpreter",
"compiler",
"kohebi",
]
categories = [
"compilers",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/tamnd/kohebi"
[lib]
name = "kohebi_core"
path = "src/lib.rs"
[dependencies.bitflags]
version = "2.13.1"
[dependencies.hashbrown]
version = "0.17.1"
[dependencies.num-bigint]
version = "0.5.1"
[dependencies.num-traits]
version = "0.2.19"
[dependencies.parking_lot]
version = "0.12.5"
[dependencies.rustc-hash]
version = "2.1.3"
[dependencies.smallvec]
version = "1.15.2"
features = [
"union",
"const_generics",
]
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
missing_safety_doc = "deny"
module_name_repetitions = "allow"
undocumented_unsafe_blocks = "warn"
unnecessary_literal_bound = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
unreachable_pub = "warn"
unsafe_op_in_unsafe_fn = "deny"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1