Files
RustPython/jit/Cargo.toml
2021-10-21 11:46:24 -05:00

28 lines
625 B
TOML

[package]
name = "rustpython-jit"
version = "0.1.2"
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]
cranelift = "0.72.0"
cranelift-module = "0.72.0"
cranelift-jit = "0.72.0"
num-traits = "0.2"
libffi = "1.0"
rustpython-bytecode = { path = "../bytecode", version = "0.1.2" }
thiserror = "1.0"
[dev-dependencies]
approx = "0.4.0"
rustpython-derive = { path = "../derive", version = "0.1.2" }
[[test]]
name = "integration"
path = "tests/lib.rs"