mirror of
https://github.com/RustPython/RustPython.git
synced 2026-06-02 19:39:49 +09:00
Bumps the cranelift group with 3 updates: [cranelift](https://github.com/bytecodealliance/wasmtime), [cranelift-jit](https://github.com/bytecodealliance/wasmtime) and [cranelift-module](https://github.com/bytecodealliance/wasmtime). Updates `cranelift` from 0.128.3 to 0.129.1 - [Release notes](https://github.com/bytecodealliance/wasmtime/releases) - [Changelog](https://github.com/bytecodealliance/wasmtime/blob/main/RELEASES.md) - [Commits](https://github.com/bytecodealliance/wasmtime/commits) Updates `cranelift-jit` from 0.128.3 to 0.129.1 - [Release notes](https://github.com/bytecodealliance/wasmtime/releases) - [Changelog](https://github.com/bytecodealliance/wasmtime/blob/main/RELEASES.md) - [Commits](https://github.com/bytecodealliance/wasmtime/commits) Updates `cranelift-module` from 0.128.3 to 0.129.1 - [Release notes](https://github.com/bytecodealliance/wasmtime/releases) - [Changelog](https://github.com/bytecodealliance/wasmtime/blob/main/RELEASES.md) - [Commits](https://github.com/bytecodealliance/wasmtime/commits) --- updated-dependencies: - dependency-name: cranelift dependency-version: 0.129.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cranelift - dependency-name: cranelift-jit dependency-version: 0.129.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cranelift - dependency-name: cranelift-module dependency-version: 0.129.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cranelift ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
36 lines
721 B
TOML
36 lines
721 B
TOML
[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 = "0.129.1"
|
|
cranelift-jit = "0.129.1"
|
|
cranelift-module = "0.129.1"
|
|
|
|
[dev-dependencies]
|
|
rustpython-derive = { workspace = true }
|
|
rustpython-wtf8 = { workspace = true }
|
|
|
|
approx = "0.5.1"
|
|
|
|
[[test]]
|
|
name = "integration"
|
|
path = "tests/lib.rs"
|
|
|
|
[lints]
|
|
workspace = true
|