Files
RustPython/jit/Cargo.toml
Jeong YunWon 8673169ee7 0.4.0
2024-08-07 08:38:21 +09:00

36 lines
711 B
TOML

[package]
name = "rustpython-jit"
version = "0.4.0"
description = "Experimental JIT(just in time) compiler for python code."
authors = ["RustPython Team"]
repository = "https://github.com/RustPython/RustPython"
license = "MIT"
edition = "2021"
autotests = false
[dependencies]
rustpython-compiler-core = { workspace = true }
num-traits = { workspace = true }
thiserror = { workspace = true }
cranelift = "0.88.0"
cranelift-jit = "0.88.0"
cranelift-module = "0.88.0"
[dependencies.libffi]
version = "3.1.0"
features = ["system"]
[dev-dependencies]
rustpython-derive = { path = "../derive", version = "0.4.0" }
approx = "0.5.1"
[[test]]
name = "integration"
path = "tests/lib.rs"
[lints]
workspace = true