Update wasm-tools crates (#2908)
wasmparser 0.78 adds the Unknown name subsection type.
This commit is contained in:
8
Cargo.lock
generated
8
Cargo.lock
generated
@@ -3483,15 +3483,15 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "wasmparser"
|
name = "wasmparser"
|
||||||
version = "0.77.0"
|
version = "0.78.1"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "b35c86d22e720a07d954ebbed772d01180501afe7d03d464f413bb5f8914a8d6"
|
checksum = "2f9255225d0124a59dd44def5cf98b62d70a27aed921f2c51e28035f08a73b0c"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "wasmprinter"
|
name = "wasmprinter"
|
||||||
version = "0.2.25"
|
version = "0.2.26"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "d0a64a1ecb60865b59789953ee6f62e49c3d47dde66b5b3f521c99b49d921836"
|
checksum = "2ccec894c70710c2e4669320a532cb2b9cfb97adb0429745642f8ce76916ed85"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"wasmparser",
|
"wasmparser",
|
||||||
|
|||||||
@@ -43,7 +43,7 @@ libc = "0.2.60"
|
|||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
rayon = "1.2.1"
|
rayon = "1.2.1"
|
||||||
humantime = "2.0.0"
|
humantime = "2.0.0"
|
||||||
wasmparser = "0.77.0"
|
wasmparser = "0.78.1"
|
||||||
lazy_static = "1.4.0"
|
lazy_static = "1.4.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ keywords = ["webassembly", "wasm"]
|
|||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
wasmparser = { version = "0.77", default-features = false }
|
wasmparser = { version = "0.78", default-features = false }
|
||||||
cranelift-codegen = { path = "../codegen", version = "0.73.0", default-features = false }
|
cranelift-codegen = { path = "../codegen", version = "0.73.0", default-features = false }
|
||||||
cranelift-entity = { path = "../entity", version = "0.73.0" }
|
cranelift-entity = { path = "../entity", version = "0.73.0" }
|
||||||
cranelift-frontend = { path = "../frontend", version = "0.73.0", default-features = false }
|
cranelift-frontend = { path = "../frontend", version = "0.73.0", default-features = false }
|
||||||
|
|||||||
@@ -486,6 +486,7 @@ pub fn parse_name_section<'data>(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
wasmparser::Name::Unknown { .. } => {}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Ok(())
|
Ok(())
|
||||||
|
|||||||
@@ -17,5 +17,5 @@ cranelift-wasm = { path = "../../cranelift/wasm", version = "0.73.0" }
|
|||||||
cranelift-codegen = { path = "../../cranelift/codegen", version = "0.73.0" }
|
cranelift-codegen = { path = "../../cranelift/codegen", version = "0.73.0" }
|
||||||
cranelift-frontend = { path = "../../cranelift/frontend", version = "0.73.0" }
|
cranelift-frontend = { path = "../../cranelift/frontend", version = "0.73.0" }
|
||||||
cranelift-entity = { path = "../../cranelift/entity", version = "0.73.0" }
|
cranelift-entity = { path = "../../cranelift/entity", version = "0.73.0" }
|
||||||
wasmparser = "0.77.0"
|
wasmparser = "0.78.0"
|
||||||
target-lexicon = "0.12"
|
target-lexicon = "0.12"
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ edition = "2018"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
gimli = "0.24.0"
|
gimli = "0.24.0"
|
||||||
wasmparser = "0.77"
|
wasmparser = "0.78"
|
||||||
object = { version = "0.24.0", default-features = false, features = ["read_core", "elf", "write"] }
|
object = { version = "0.24.0", default-features = false, features = ["read_core", "elf", "write"] }
|
||||||
wasmtime-environ = { path = "../environ", version = "0.26.0" }
|
wasmtime-environ = { path = "../environ", version = "0.26.0" }
|
||||||
target-lexicon = { version = "0.12.0", default-features = false }
|
target-lexicon = { version = "0.12.0", default-features = false }
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ edition = "2018"
|
|||||||
cranelift-codegen = { path = "../../cranelift/codegen", version = "0.73.0", features = ["enable-serde"] }
|
cranelift-codegen = { path = "../../cranelift/codegen", version = "0.73.0", features = ["enable-serde"] }
|
||||||
cranelift-entity = { path = "../../cranelift/entity", version = "0.73.0", features = ["enable-serde"] }
|
cranelift-entity = { path = "../../cranelift/entity", version = "0.73.0", features = ["enable-serde"] }
|
||||||
cranelift-wasm = { path = "../../cranelift/wasm", version = "0.73.0", features = ["enable-serde"] }
|
cranelift-wasm = { path = "../../cranelift/wasm", version = "0.73.0", features = ["enable-serde"] }
|
||||||
wasmparser = "0.77"
|
wasmparser = "0.78"
|
||||||
indexmap = { version = "1.0.2", features = ["serde-1"] }
|
indexmap = { version = "1.0.2", features = ["serde-1"] }
|
||||||
thiserror = "1.0.4"
|
thiserror = "1.0.4"
|
||||||
serde = { version = "1.0.94", features = ["derive"] }
|
serde = { version = "1.0.94", features = ["derive"] }
|
||||||
|
|||||||
@@ -13,8 +13,8 @@ arbitrary = { version = "1.0.0", features = ["derive"] }
|
|||||||
env_logger = "0.8.1"
|
env_logger = "0.8.1"
|
||||||
log = "0.4.8"
|
log = "0.4.8"
|
||||||
rayon = "1.2.1"
|
rayon = "1.2.1"
|
||||||
wasmparser = "0.77"
|
wasmparser = "0.78"
|
||||||
wasmprinter = "0.2.25"
|
wasmprinter = "0.2.26"
|
||||||
wasmtime = { path = "../wasmtime" }
|
wasmtime = { path = "../wasmtime" }
|
||||||
wasmtime-wast = { path = "../wast" }
|
wasmtime-wast = { path = "../wast" }
|
||||||
wasm-encoder = "0.4.1"
|
wasm-encoder = "0.4.1"
|
||||||
|
|||||||
@@ -28,7 +28,7 @@ rayon = { version = "1.0", optional = true }
|
|||||||
region = "2.2.0"
|
region = "2.2.0"
|
||||||
thiserror = "1.0.4"
|
thiserror = "1.0.4"
|
||||||
target-lexicon = { version = "0.12.0", default-features = false }
|
target-lexicon = { version = "0.12.0", default-features = false }
|
||||||
wasmparser = "0.77"
|
wasmparser = "0.78"
|
||||||
more-asserts = "0.2.1"
|
more-asserts = "0.2.1"
|
||||||
anyhow = "1.0"
|
anyhow = "1.0"
|
||||||
cfg-if = "1.0"
|
cfg-if = "1.0"
|
||||||
|
|||||||
@@ -24,7 +24,7 @@ more-asserts = "0.2.1"
|
|||||||
smallvec = "1.6.1"
|
smallvec = "1.6.1"
|
||||||
thiserror = "1.0.9"
|
thiserror = "1.0.9"
|
||||||
typemap = "0.3"
|
typemap = "0.3"
|
||||||
wasmparser = "0.77"
|
wasmparser = "0.78"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
lazy_static = "1.2"
|
lazy_static = "1.2"
|
||||||
|
|||||||
@@ -13,6 +13,6 @@ edition = "2018"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
lightbeam = { path = "..", version = "0.26.0" }
|
lightbeam = { path = "..", version = "0.26.0" }
|
||||||
wasmparser = "0.77"
|
wasmparser = "0.78"
|
||||||
cranelift-codegen = { path = "../../../cranelift/codegen", version = "0.73.0" }
|
cranelift-codegen = { path = "../../../cranelift/codegen", version = "0.73.0" }
|
||||||
wasmtime-environ = { path = "../../environ", version = "0.26.0" }
|
wasmtime-environ = { path = "../../environ", version = "0.26.0" }
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ wasmtime-cache = { path = "../cache", version = "0.26.0", optional = true }
|
|||||||
wasmtime-profiling = { path = "../profiling", version = "0.26.0" }
|
wasmtime-profiling = { path = "../profiling", version = "0.26.0" }
|
||||||
wasmtime-fiber = { path = "../fiber", version = "0.26.0", optional = true }
|
wasmtime-fiber = { path = "../fiber", version = "0.26.0", optional = true }
|
||||||
target-lexicon = { version = "0.12.0", default-features = false }
|
target-lexicon = { version = "0.12.0", default-features = false }
|
||||||
wasmparser = "0.77"
|
wasmparser = "0.78"
|
||||||
anyhow = "1.0.19"
|
anyhow = "1.0.19"
|
||||||
region = "2.2.0"
|
region = "2.2.0"
|
||||||
libc = "0.2"
|
libc = "0.2"
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ edition = "2018"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0.19"
|
anyhow = "1.0.19"
|
||||||
wasmtime = { path = "../wasmtime", version = "0.26.0", default-features = false }
|
wasmtime = { path = "../wasmtime", version = "0.26.0", default-features = false }
|
||||||
wast = "35.0.1"
|
wast = "35.0.2"
|
||||||
|
|
||||||
[badges]
|
[badges]
|
||||||
maintenance = { status = "actively-developed" }
|
maintenance = { status = "actively-developed" }
|
||||||
|
|||||||
Reference in New Issue
Block a user