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
35 lines (27 loc) · 767 Bytes
/
Cargo.toml
File metadata and controls
35 lines (27 loc) · 767 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
31
32
33
34
35
[package]
name = "rustpython-jit"
description = "Experimental JIT(just in time) compiler for python code."
version.workspace = true
authors.workspace = true
edition.workspace = true
rust-version.workspace = true
repository.workspace = true
license.workspace = true
autotests = false
[dependencies]
rustpython-compiler-core = { workspace = true }
num-traits = { workspace = true }
thiserror = { workspace = true }
libffi = { workspace = true }
cranelift = { workspace = true }
cranelift-jit = { workspace = true }
cranelift-module = { workspace = true }
[dev-dependencies]
rustpython-derive = { workspace = true }
rustpython-wtf8 = { workspace = true }
approx = { workspace = true }
[[test]]
name = "integration"
path = "tests/lib.rs"
[lints]
workspace = true