* Upgrade all crates to the Rust 2021 edition
I've personally started using the new format strings for things like
`panic!("some message {foo}")` or similar and have been upgrading crates
on a case-by-case basis, but I think it probably makes more sense to go
ahead and blanket upgrade everything so 2021 features are always
available.
* Fix compile of the C API
* Fix a warning
* Fix another warning
26 lines
778 B
TOML
26 lines
778 B
TOML
[package]
|
|
name = "wiggle-test"
|
|
version = "0.21.0"
|
|
authors = ["Pat Hickey <phickey@fastly.com>", "Jakub Konka <kubkon@jakubkonka.com>", "Alex Crichton <alex@alexcrichton.com>"]
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
edition = "2021"
|
|
description = "Reusable testing components for wiggle code generator. Only intended to be used by tests in `wiggle` crate."
|
|
categories = ["wasm"]
|
|
keywords = ["webassembly", "wasm"]
|
|
repository = "https://github.com/bytecodealliance/wasmtime"
|
|
include = ["src/**/*", "LICENSE"]
|
|
publish = false
|
|
|
|
[dependencies]
|
|
proptest = "1.0.0"
|
|
wiggle = { path = "..", features = ["tracing_log"] }
|
|
|
|
[dev-dependencies]
|
|
thiserror = "1.0"
|
|
tracing = "0.1.26"
|
|
tracing-subscriber = "0.3.1"
|
|
env_logger = "0.8"
|
|
|
|
[badges]
|
|
maintenance = { status = "actively-developed" }
|