Update object to 0.21.1 (#2144)
This commit is contained in:
16
Cargo.lock
generated
16
Cargo.lock
generated
@@ -487,7 +487,7 @@ dependencies = [
|
|||||||
"anyhow",
|
"anyhow",
|
||||||
"cranelift-codegen",
|
"cranelift-codegen",
|
||||||
"cranelift-module",
|
"cranelift-module",
|
||||||
"object 0.20.0",
|
"object 0.21.1",
|
||||||
"target-lexicon",
|
"target-lexicon",
|
||||||
]
|
]
|
||||||
|
|
||||||
@@ -1216,6 +1216,12 @@ name = "object"
|
|||||||
version = "0.20.0"
|
version = "0.20.0"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "1ab52be62400ca80aa00285d25253d7f7c437b7375c4de678f5405d3afe82ca5"
|
checksum = "1ab52be62400ca80aa00285d25253d7f7c437b7375c4de678f5405d3afe82ca5"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "object"
|
||||||
|
version = "0.21.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "37fd5004feb2ce328a52b0b3d01dbf4ffff72583493900ed15f22d4111c51693"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"crc32fast",
|
"crc32fast",
|
||||||
"indexmap",
|
"indexmap",
|
||||||
@@ -2387,7 +2393,7 @@ dependencies = [
|
|||||||
"libc",
|
"libc",
|
||||||
"log",
|
"log",
|
||||||
"more-asserts",
|
"more-asserts",
|
||||||
"object 0.20.0",
|
"object 0.21.1",
|
||||||
"pretty_env_logger",
|
"pretty_env_logger",
|
||||||
"rayon",
|
"rayon",
|
||||||
"structopt",
|
"structopt",
|
||||||
@@ -2415,7 +2421,7 @@ dependencies = [
|
|||||||
"anyhow",
|
"anyhow",
|
||||||
"gimli 0.21.0",
|
"gimli 0.21.0",
|
||||||
"more-asserts",
|
"more-asserts",
|
||||||
"object 0.20.0",
|
"object 0.21.1",
|
||||||
"target-lexicon",
|
"target-lexicon",
|
||||||
"thiserror",
|
"thiserror",
|
||||||
"wasmparser 0.59.0",
|
"wasmparser 0.59.0",
|
||||||
@@ -2487,7 +2493,7 @@ dependencies = [
|
|||||||
"gimli 0.21.0",
|
"gimli 0.21.0",
|
||||||
"log",
|
"log",
|
||||||
"more-asserts",
|
"more-asserts",
|
||||||
"object 0.20.0",
|
"object 0.21.1",
|
||||||
"rayon",
|
"rayon",
|
||||||
"region",
|
"region",
|
||||||
"serde",
|
"serde",
|
||||||
@@ -2508,7 +2514,7 @@ version = "0.19.0"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"more-asserts",
|
"more-asserts",
|
||||||
"object 0.20.0",
|
"object 0.21.1",
|
||||||
"target-lexicon",
|
"target-lexicon",
|
||||||
"wasmtime-debug",
|
"wasmtime-debug",
|
||||||
"wasmtime-environ",
|
"wasmtime-environ",
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ wasmtime-wast = { path = "crates/wast", version = "0.19.0" }
|
|||||||
wasmtime-wasi = { path = "crates/wasi", version = "0.19.0" }
|
wasmtime-wasi = { path = "crates/wasi", version = "0.19.0" }
|
||||||
wasi-common = { path = "crates/wasi-common", version = "0.19.0" }
|
wasi-common = { path = "crates/wasi-common", version = "0.19.0" }
|
||||||
structopt = { version = "0.3.5", features = ["color", "suggestions"] }
|
structopt = { version = "0.3.5", features = ["color", "suggestions"] }
|
||||||
object = { version = "0.20", default-features = false, features = ["write"] }
|
object = { version = "0.21.1", default-features = false, features = ["write"] }
|
||||||
anyhow = "1.0.19"
|
anyhow = "1.0.19"
|
||||||
target-lexicon = { version = "0.10.0", default-features = false }
|
target-lexicon = { version = "0.10.0", default-features = false }
|
||||||
pretty_env_logger = "0.4.0"
|
pretty_env_logger = "0.4.0"
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ edition = "2018"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
cranelift-module = { path = "../module", version = "0.66.0" }
|
cranelift-module = { path = "../module", version = "0.66.0" }
|
||||||
cranelift-codegen = { path = "../codegen", version = "0.66.0", default-features = false, features = ["std"] }
|
cranelift-codegen = { path = "../codegen", version = "0.66.0", default-features = false, features = ["std"] }
|
||||||
object = { version = "0.20", default-features = false, features = ["write"] }
|
object = { version = "0.21.1", default-features = false, features = ["write"] }
|
||||||
target-lexicon = "0.10"
|
target-lexicon = "0.10"
|
||||||
anyhow = "1.0"
|
anyhow = "1.0"
|
||||||
|
|
||||||
|
|||||||
@@ -14,7 +14,7 @@ edition = "2018"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
gimli = "0.21.0"
|
gimli = "0.21.0"
|
||||||
wasmparser = "0.59.0"
|
wasmparser = "0.59.0"
|
||||||
object = { version = "0.20", default-features = false, features = ["read", "write"] }
|
object = { version = "0.21.1", default-features = false, features = ["read", "write"] }
|
||||||
wasmtime-environ = { path = "../environ", version = "0.19.0" }
|
wasmtime-environ = { path = "../environ", version = "0.19.0" }
|
||||||
target-lexicon = { version = "0.10.0", default-features = false }
|
target-lexicon = { version = "0.10.0", default-features = false }
|
||||||
anyhow = "1.0"
|
anyhow = "1.0"
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ anyhow = "1.0"
|
|||||||
cfg-if = "0.1.9"
|
cfg-if = "0.1.9"
|
||||||
log = "0.4"
|
log = "0.4"
|
||||||
gimli = { version = "0.21.0", default-features = false, features = ["write"] }
|
gimli = { version = "0.21.0", default-features = false, features = ["write"] }
|
||||||
object = { version = "0.20", default-features = false, features = ["write"] }
|
object = { version = "0.21.1", default-features = false, features = ["write"] }
|
||||||
serde = { version = "1.0.94", features = ["derive"] }
|
serde = { version = "1.0.94", features = ["derive"] }
|
||||||
|
|
||||||
[target.'cfg(target_os = "windows")'.dependencies]
|
[target.'cfg(target_os = "windows")'.dependencies]
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ edition = "2018"
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = "1.0"
|
anyhow = "1.0"
|
||||||
wasmtime-environ = { path = "../environ", version = "0.19.0" }
|
wasmtime-environ = { path = "../environ", version = "0.19.0" }
|
||||||
object = { version = "0.20", default-features = false, features = ["write"] }
|
object = { version = "0.21.1", default-features = false, features = ["write"] }
|
||||||
more-asserts = "0.2.1"
|
more-asserts = "0.2.1"
|
||||||
target-lexicon = { version = "0.10.0", default-features = false }
|
target-lexicon = { version = "0.10.0", default-features = false }
|
||||||
wasmtime-debug = { path = "../debug", version = "0.19.0" }
|
wasmtime-debug = { path = "../debug", version = "0.19.0" }
|
||||||
|
|||||||
Reference in New Issue
Block a user