Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bytecodealliance
GitHub Repository: bytecodealliance/wasmtime
Path: blob/main/crates/wiggle/test-helpers/Cargo.toml
3101 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
thiserror = { workspace = true }
24
tracing = { workspace = true }
25
tracing-subscriber = { version = "0.3.1", default-features = false, features = ['fmt'] }
26
env_logger = { workspace = true }
27
# Explicitly enable default features so that tests pass even testing only this
28
# crate in isolation and we can't accidentally rely on cargo feature resolution
29
# to enable the runtime and compiler.
30
wasmtime = { workspace = true, features = ["default"] }
31
32