Browse Source
Re-update the `wat` crate (#935)
This was accidentally downgraded as part of #926, but we want to be sure
to pull in wast 7.0.0!
pull/936/head
Alex Crichton
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
4 additions and
13 deletions
-
Cargo.lock
-
crates/api/Cargo.toml
|
|
@ -2152,15 +2152,6 @@ dependencies = [ |
|
|
|
"leb128", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "wast" |
|
|
|
version = "6.0.0" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "3ed3db7029d1d31a15c10126e78b58e51781faefafbc8afb20fb01291b779984" |
|
|
|
dependencies = [ |
|
|
|
"leb128", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "wast" |
|
|
|
version = "7.0.0" |
|
|
@ -2172,11 +2163,11 @@ dependencies = [ |
|
|
|
|
|
|
|
[[package]] |
|
|
|
name = "wat" |
|
|
|
version = "1.0.7" |
|
|
|
version = "1.0.8" |
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
|
|
checksum = "9d59ba5b224f5507d55e4f89d0b18cc6452d84640ab11b4c9086d61a3ee62d03" |
|
|
|
checksum = "5795e34a4b39893653dec97e644fac85c31398e0ce1abecc48967aac83d9e8ce" |
|
|
|
dependencies = [ |
|
|
|
"wast 6.0.0", |
|
|
|
"wast 7.0.0", |
|
|
|
] |
|
|
|
|
|
|
|
[[package]] |
|
|
|
|
|
@ -21,7 +21,7 @@ cfg-if = "0.1.9" |
|
|
|
backtrace = "0.3.42" |
|
|
|
rustc-demangle = "0.1.16" |
|
|
|
lazy_static = "1.4" |
|
|
|
wat = { version = "1.0.7", optional = true } |
|
|
|
wat = { version = "1.0.8", optional = true } |
|
|
|
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies] |
|
|
|
winapi = "0.3.7" |
|
|
|