[package]
edition = "2024"
rust-version = "1.93.0"
name = "rustpython-jit"
version = "0.5.0"
authors = ["RustPython Team"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Experimental JIT(just in time) compiler for python code."
readme = false
license = "MIT"
repository = "https://github.com/RustPython/RustPython"
resolver = "2"
[lib]
name = "rustpython_jit"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/lib.rs"
[dependencies.cranelift]
version = "0.130.0"
[dependencies.cranelift-jit]
version = "0.130.0"
[dependencies.cranelift-module]
version = "0.130.0"
[dependencies.libffi]
version = "5"
[dependencies.num-traits]
version = "0.2"
[dependencies.rustpython-compiler-core]
version = "0.5.0"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.approx]
version = "0.5.1"
[dev-dependencies.rustpython-derive]
version = "0.5.0"
[dev-dependencies.rustpython-wtf8]
version = "0.5.0"
[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"