Files
wasmtime/crates/cranelift/Cargo.toml
Alex Crichton 174b60dcf7 Add *.wast support for invoking components (#4526)
This commit builds on bytecodealliance/wasm-tools#690 to add support to
testing of the component model to execute functions when running
`*.wast` files. This support is all built on #4442 as functions are
invoked through a "dynamic" API. Right now the testing and integration
is fairly crude but I'm hoping that we can try to improve it over time
as necessary. For now this should provide a hopefully more convenient
syntax for unit tests and the like.
2022-07-27 21:02:16 +00:00

31 lines
1.2 KiB
TOML

[package]
name = "wasmtime-cranelift"
version = "0.40.0"
authors = ["The Wasmtime Project Developers"]
description = "Integration between Cranelift and Wasmtime"
license = "Apache-2.0 WITH LLVM-exception"
repository = "https://github.com/bytecodealliance/wasmtime"
documentation = "https://docs.rs/wasmtime-cranelift/"
categories = ["wasm"]
keywords = ["webassembly", "wasm"]
edition = "2021"
[dependencies]
anyhow = "1.0"
log = "0.4"
wasmtime-environ = { path = "../environ", version = "=0.40.0" }
cranelift-wasm = { path = "../../cranelift/wasm", version = "0.87.0" }
cranelift-codegen = { path = "../../cranelift/codegen", version = "0.87.0" }
cranelift-frontend = { path = "../../cranelift/frontend", version = "0.87.0" }
cranelift-entity = { path = "../../cranelift/entity", version = "0.87.0" }
cranelift-native = { path = "../../cranelift/native", version = "0.87.0" }
wasmparser = "0.88.0"
target-lexicon = "0.12"
gimli = { version = "0.26.0", default-features = false, features = ['read', 'std'] }
object = { version = "0.29.0", default-features = false, features = ['write'] }
thiserror = "1.0.4"
[features]
all-arch = ["cranelift-codegen/all-arch"]
component-model = ["wasmtime-environ/component-model"]