Files
RustPython/jit/Cargo.toml
2021-10-30 19:42:35 -05:00

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