mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 06:27:58 +00:00
cf6144baed
Bumps [libc](https://github.com/rust-lang/libc) from 0.2.105 to 0.2.112. - [Release notes](https://github.com/rust-lang/libc/releases) - [Commits](https://github.com/rust-lang/libc/compare/0.2.105...0.2.112) --- updated-dependencies: - dependency-name: libc dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
37 lines
1.3 KiB
TOML
37 lines
1.3 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]
|
|
libc = "0.2.112"
|
|
cfg-if = "1.0"
|
|
log = "0.4.8"
|
|
parity-wasm = "0.42.0"
|
|
codec = { package = "parity-scale-codec", version = "2.0.0" }
|
|
sc-executor-common = { version = "0.10.0-dev", path = "../common" }
|
|
sp-wasm-interface = { version = "4.1.0-dev", path = "../../../primitives/wasm-interface", features = ["wasmtime"] }
|
|
sp-runtime-interface = { version = "4.1.0-dev", path = "../../../primitives/runtime-interface" }
|
|
sp-core = { version = "4.1.0-dev", path = "../../../primitives/core" }
|
|
sc-allocator = { version = "4.1.0-dev", path = "../../allocator" }
|
|
wasmtime = { version = "0.31.0", default-features = false, features = [
|
|
"cache",
|
|
"cranelift",
|
|
"jitdump",
|
|
"parallel-compilation",
|
|
] }
|
|
|
|
[dev-dependencies]
|
|
sc-runtime-test = { version = "2.0.0", path = "../runtime-test" }
|
|
sp-io = { version = "4.0.0", path = "../../../primitives/io" }
|
|
wat = "1.0"
|