Path: blob/main/crates/wiggle/test-helpers/Cargo.toml
3101 views
[package]1name = "wiggle-test"2version = "0.0.0"3authors = ["Pat Hickey <[email protected]>", "Jakub Konka <[email protected]>", "Alex Crichton <[email protected]>"]4license = "Apache-2.0 WITH LLVM-exception"5edition.workspace = true6rust-version.workspace = true7description = "Reusable testing components for wiggle code generator. Only intended to be used by tests in `wiggle` crate."8categories = ["wasm"]9keywords = ["webassembly", "wasm"]10repository = "https://github.com/bytecodealliance/wasmtime"11include = ["src/**/*", "LICENSE"]12publish = false1314[lints]15workspace = true1617[dependencies]18proptest = "1.0.0"19wiggle = { path = "..", features = ["tracing_log"] }2021[dev-dependencies]22thiserror = { workspace = true }23tracing = { workspace = true }24tracing-subscriber = { version = "0.3.1", default-features = false, features = ['fmt'] }25env_logger = { workspace = true }26# Explicitly enable default features so that tests pass even testing only this27# crate in isolation and we can't accidentally rely on cargo feature resolution28# to enable the runtime and compiler.29wasmtime = { workspace = true, features = ["default"] }303132