Files
RustPython/jit/Cargo.toml
2020-12-05 16:36:37 -06:00

28 lines
631 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 = "2018"
autotests = false
[dependencies]
cranelift = "0.68.0"
cranelift-module = "0.68.0"
cranelift-simplejit = "0.68.0"
num-traits = "0.2"
libffi = "1.0"
rustpython-bytecode = { path = "../bytecode", version = "0.1.2" }
thiserror = "1.0"
[dev-dependencies]
approx = "0.3.2"
rustpython-derive = { path = "../derive", version = "0.1.2" }
[[test]]
name = "integration"
path = "tests/lib.rs"