Update dependencies
This commit is contained in:
parent
3dd65486f4
commit
8dfb1daea7
2 changed files with 4 additions and 12 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -354,9 +354,9 @@ checksum = "3757cb9d89161a2f24e1cf78efa0c1fcff485d18e3f55e0aa3480824ddaa0f3f"
|
|||
|
||||
[[package]]
|
||||
name = "syn"
|
||||
version = "1.0.33"
|
||||
version = "1.0.34"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "e8d5d96e8cbb005d6959f119f773bfaebb5684296108fb32600c00cde305b2cd"
|
||||
checksum = "936cae2873c940d92e697597c5eee105fb570cd5689c695806f672883653349b"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
|
|
12
Cargo.toml
12
Cargo.toml
|
@ -15,6 +15,8 @@ cranelift-module = { git = "https://github.com/bytecodealliance/wasmtime/", bran
|
|||
cranelift-simplejit = { git = "https://github.com/bytecodealliance/wasmtime/", branch = "main", optional = true }
|
||||
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.20.0", default-features = false, features = ["read", "std", "write"] }
|
||||
|
||||
ar = "0.8.0"
|
||||
byteorder = "1.2.7"
|
||||
|
@ -22,16 +24,6 @@ indexmap = "1.0.2"
|
|||
cfg-if = "0.1.10"
|
||||
libloading = { version = "0.6.0", optional = true }
|
||||
|
||||
[dependencies.object]
|
||||
version = "0.20.0"
|
||||
default-features = false
|
||||
features = ["read", "std", "write"] # We don't need WASM support
|
||||
|
||||
[dependencies.gimli]
|
||||
version = "0.21.0"
|
||||
default-features = false
|
||||
features = ["write"] # We don't need read support
|
||||
|
||||
# Uncomment to use local checkout of cranelift
|
||||
#[patch."https://github.com/bytecodealliance/wasmtime/"]
|
||||
#cranelift-codegen = { path = "../wasmtime/cranelift/codegen" }
|
||||
|
|
Loading…
Add table
Reference in a new issue