Several of these badges were out of date, with some crates in wide production use marked as "experimental". Insted of trying to keep them up to date, just remove them, since they are [no longer displayed on crates.io]. [no longer displayed on crates.io]: https://doc.rust-lang.org/cargo/reference/manifest.html#the-badges-section
20 lines
536 B
TOML
20 lines
536 B
TOML
[package]
|
|
name = "wasmtime-wast"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
description = "wast testing support for wasmtime"
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
categories = ["wasm"]
|
|
keywords = ["webassembly", "wasm"]
|
|
repository = "https://github.com/bytecodealliance/wasmtime"
|
|
edition.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow = { workspace = true }
|
|
wasmtime = { workspace = true, features = ['cranelift'] }
|
|
wast = { workspace = true }
|
|
log = { workspace = true }
|
|
|
|
[features]
|
|
component-model = ['wasmtime/component-model']
|