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:
@@ -30,12 +30,12 @@ wasmtime-wast = { path = "crates/wast", version = "=0.40.0" }
|
||||
wasmtime-wasi = { path = "crates/wasi", version = "0.40.0" }
|
||||
wasmtime-wasi-crypto = { path = "crates/wasi-crypto", version = "0.40.0", optional = true }
|
||||
wasmtime-wasi-nn = { path = "crates/wasi-nn", version = "0.40.0", optional = true }
|
||||
clap = { version = "3.1.12", features = ["color", "suggestions", "derive"] }
|
||||
clap = { version = "3.2.0", features = ["color", "suggestions", "derive"] }
|
||||
anyhow = "1.0.19"
|
||||
target-lexicon = { version = "0.12.0", default-features = false }
|
||||
libc = "0.2.60"
|
||||
humantime = "2.0.0"
|
||||
lazy_static = "1.4.0"
|
||||
once_cell = "1.12"
|
||||
listenfd = "1.0.0"
|
||||
|
||||
[target.'cfg(unix)'.dependencies]
|
||||
|
||||
Reference in New Issue
Block a user