Remove wasmparser dependency through object

This commit is contained in:
bjorn3 2020-09-16 17:17:57 +02:00
parent 51f816f2a7
commit a18a1948e0
2 changed files with 1 additions and 8 deletions

7
Cargo.lock generated
View File

@ -251,7 +251,6 @@ checksum = "37fd5004feb2ce328a52b0b3d01dbf4ffff72583493900ed15f22d4111c51693"
dependencies = [
"crc32fast",
"indexmap",
"wasmparser",
]
[[package]]
@ -402,12 +401,6 @@ version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
[[package]]
name = "wasmparser"
version = "0.57.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "32fddd575d477c6e9702484139cf9f23dcd554b06d185ed0f56c857dd3a47aa6"
[[package]]
name = "winapi"
version = "0.3.9"

View File

@ -16,7 +16,7 @@ cranelift-simplejit = { git = "https://github.com/bytecodealliance/wasmtime/", b
cranelift-object = { git = "https://github.com/bytecodealliance/wasmtime/", branch = "main" }
target-lexicon = "0.10.0"
gimli = { version = "0.21.0", default-features = false, features = ["write"]}
object = { version = "0.21.1", default-features = false, features = ["read", "std", "write"] }
object = { version = "0.21.1", default-features = false, features = ["std", "read_core", "write", "coff", "elf", "macho", "pe"] }
ar = { git = "https://github.com/bjorn3/rust-ar.git", branch = "do_not_remove_cg_clif_ranlib" }
indexmap = "1.0.2"