There was an error while loading. Please reload this page.
1 parent 809816c commit b2ab9d9Copy full SHA for b2ab9d9
6 files changed
Cargo.lock
Cargo.toml
@@ -9,7 +9,7 @@ license = "MIT"
9
include = ["LICENSE", "Cargo.toml", "src/**/*.rs"]
10
11
[workspace]
12
-members = [".", "derive", "vm", "wasm/lib", "parser", "compiler", "bytecode", "vm/pylib-crate", "common"]
+members = [".", "derive", "vm", "wasm/lib", "parser", "compiler", "bytecode", "vm/pylib-crate", "common", "jit"]
13
14
[[bench]]
15
name = "bench"
jit/Cargo.toml
@@ -0,0 +1,14 @@
1
+[package]
2
+name = "rustpython-jit"
3
+version = "0.1.2"
4
+description = "Experimental JIT(just in time) compiler for python code."
5
+authors = [ "RustPython Team" ]
6
+repository = "https://github.com/RustPython/RustPython"
7
+license = "MIT"
8
+edition = "2018"
+
+[dependencies]
+cranelift = "0.66.0"
+cranelift-module = "0.66.0"
+cranelift-simplejit = "0.66.0"
0 commit comments