Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/crates/wiggle/test-helpers/Cargo.toml
1692 views
1
[package]
2
name = "wiggle-test"
3
version = "0.0.0"
4
authors = ["Pat Hickey <[email protected]>", "Jakub Konka <[email protected]>", "Alex Crichton <[email protected]>"]
5
license = "Apache-2.0 WITH LLVM-exception"
6
edition.workspace = true
7
rust-version.workspace = true
8
description = "Reusable testing components for wiggle code generator. Only intended to be used by tests in `wiggle` crate."
9
categories = ["wasm"]
10
keywords = ["webassembly", "wasm"]
11
repository = "https://github.com/bytecodealliance/wasmtime"
12
include = ["src/**/*", "LICENSE"]
13
publish = false
14
15
[lints]
16
workspace = true
17
18
[dependencies]
19
proptest = "1.0.0"
20
wiggle = { path = "..", features = ["tracing_log"] }
21
22
[dev-dependencies]
23
anyhow = { workspace = true }
24
thiserror = { workspace = true }
25
tracing = { workspace = true }
26
tracing-subscriber = { version = "0.3.1", default-features = false, features = ['fmt'] }
27
env_logger = { workspace = true }
28
29