* 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
16 lines
583 B
TOML
16 lines
583 B
TOML
[package]
|
|
name = "wasmtime-types"
|
|
version = "0.36.0"
|
|
authors = ["The Wasmtime Project Developers"]
|
|
description = "WebAssembly type definitions for Cranelift"
|
|
license = "Apache-2.0 WITH LLVM-exception"
|
|
repository = "https://github.com/bytecodealliance/wasmtime"
|
|
documentation = "https://docs.rs/wasmtime-types"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
cranelift-entity = { path = "../../cranelift/entity", version = "0.83.0", features = ['enable-serde'] }
|
|
serde = { version = "1.0.94", features = ["derive"] }
|
|
thiserror = "1.0.4"
|
|
wasmparser = { version = "0.83.0", default-features = false }
|