Migrate most of wasmtime from lazy_static to once_cell (#4368)
* Update tracing-core to a version which doesn't depend on lazy-static. * Update crossbeam-utils to a version that doesn't depend on lazy-static. * Update crossbeam-epoch to a version that doesn't depend on lazy-static. * Update clap to a version that doesn't depend on lazy-static. * Convert Wasmtime's own use of lazy_static to once_cell. * Make `GDB_REGISTRATION`'s comment a doc comment. * Fix compilation on Windows.
This commit is contained in:
@@ -41,7 +41,7 @@ indicatif = "0.13.0"
|
||||
thiserror = "1.0.15"
|
||||
walkdir = "2.2"
|
||||
anyhow = "1.0.32"
|
||||
clap = { version = "3.1.12", features = ["derive"] }
|
||||
clap = { version = "3.2.0", features = ["derive"] }
|
||||
|
||||
[features]
|
||||
default = ["disas", "wasm", "cranelift-codegen/all-arch", "souper-harvest"]
|
||||
|
||||
@@ -10,4 +10,4 @@ publish = false
|
||||
cranelift-isle = { version = "*", path = "../isle/", features = ["miette-errors", "logging"] }
|
||||
env_logger = { version = "0.9", default-features = false }
|
||||
miette = { version = "4.7.0", features = ["fancy"] }
|
||||
clap = { version = "3.1.12", features = ["derive"] }
|
||||
clap = { version = "3.2.0", features = ["derive"] }
|
||||
|
||||
@@ -14,7 +14,7 @@ name = "clif-json"
|
||||
path = "src/clif-json.rs"
|
||||
|
||||
[dependencies]
|
||||
clap = { version = "3.1.12", features = ["derive"] }
|
||||
clap = { version = "3.2.0", features = ["derive"] }
|
||||
serde_json = "1.0.26"
|
||||
cranelift-codegen = { path = "../codegen", version = "0.87.0", features = ["enable-serde"] }
|
||||
cranelift-reader = { path = "../reader", version = "0.87.0" }
|
||||
|
||||
Reference in New Issue
Block a user