Path: blob/main/crates/wiggle/test-helpers/Cargo.toml
1692 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]22anyhow = { workspace = true }23thiserror = { workspace = true }24tracing = { workspace = true }25tracing-subscriber = { version = "0.3.1", default-features = false, features = ['fmt'] }26env_logger = { workspace = true }272829