mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 02:57:57 +00:00
16fc65dc1c
Bumps [wasmtime](https://github.com/bytecodealliance/wasmtime) from 6.0.0 to 6.0.1. - [Release notes](https://github.com/bytecodealliance/wasmtime/releases) - [Changelog](https://github.com/bytecodealliance/wasmtime/blob/main/docs/WASI-some-possible-changes.md) - [Commits](https://github.com/bytecodealliance/wasmtime/compare/v6.0.0...v6.0.1) --- updated-dependencies: - dependency-name: wasmtime dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
52 lines
1.9 KiB
TOML
52 lines
1.9 KiB
TOML
[package]
|
|
name = "sc-executor-wasmtime"
|
|
version = "0.10.0-dev"
|
|
authors = ["Parity Technologies <admin@parity.io>"]
|
|
edition = "2021"
|
|
license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
|
|
homepage = "https://substrate.io"
|
|
repository = "https://github.com/paritytech/substrate/"
|
|
description = "Defines a `WasmRuntime` that uses the Wasmtime JIT to execute."
|
|
readme = "README.md"
|
|
|
|
[package.metadata.docs.rs]
|
|
targets = ["x86_64-unknown-linux-gnu"]
|
|
|
|
[dependencies]
|
|
log = "0.4.17"
|
|
cfg-if = "1.0"
|
|
libc = "0.2.121"
|
|
|
|
# When bumping wasmtime do not forget to also bump rustix
|
|
# to exactly the same version as used by wasmtime!
|
|
wasmtime = { version = "6.0.1", default-features = false, features = [
|
|
"cache",
|
|
"cranelift",
|
|
"jitdump",
|
|
"parallel-compilation",
|
|
"pooling-allocator"
|
|
] }
|
|
anyhow = "1.0.68"
|
|
sc-allocator = { version = "4.1.0-dev", path = "../../allocator" }
|
|
sc-executor-common = { version = "0.10.0-dev", path = "../common" }
|
|
sp-runtime-interface = { version = "7.0.0", path = "../../../primitives/runtime-interface" }
|
|
sp-wasm-interface = { version = "7.0.0", path = "../../../primitives/wasm-interface", features = ["wasmtime"] }
|
|
|
|
# Here we include the rustix crate in the exactly same semver-compatible version as used by
|
|
# wasmtime and enable its 'use-libc' flag.
|
|
#
|
|
# By default rustix directly calls the appropriate syscalls completely bypassing libc;
|
|
# this doesn't have any actual benefits for us besides making it harder to debug memory
|
|
# problems (since then `mmap` etc. cannot be easily hooked into).
|
|
rustix = { version = "0.36.7", default-features = false, features = ["std", "mm", "fs", "param", "use-libc"] }
|
|
once_cell = "1.12.0"
|
|
|
|
[dev-dependencies]
|
|
wat = "1.0"
|
|
sc-runtime-test = { version = "2.0.0", path = "../runtime-test" }
|
|
sp-io = { version = "7.0.0", path = "../../../primitives/io" }
|
|
tempfile = "3.3.0"
|
|
paste = "1.0"
|
|
codec = { package = "parity-scale-codec", version = "3.2.2" }
|
|
cargo_metadata = "0.15.2"
|