forked from RustPython/RustPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (23 loc) · 668 Bytes
/
Cargo.toml
File metadata and controls
30 lines (23 loc) · 668 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "rustpython-jit"
version = "0.2.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 = { path = "../compiler/core", version = "0.2.0" }
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.2.0" }
approx = "0.5.1"
[[test]]
name = "integration"
path = "tests/lib.rs"