Files
RustPython/jit/Cargo.toml
Jeong YunWon 1208416b92 0.3.0 release
2023-09-06 18:49:55 +09:00

31 lines
640 B
TOML

[package]
name = "rustpython-jit"
version = "0.3.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"
libffi = "3.1.0"
[dev-dependencies]
rustpython-derive = { path = "../derive", version = "0.3.0" }
approx = "0.5.1"
[[test]]
name = "integration"
path = "tests/lib.rs"