mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
36 lines
711 B
TOML
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 |