Fix some warnings on nightly Rust (#5668)
* Fix some warnings on nightly Rust Cargo is warning about the usage of workspace dependencies where the workspace declaration does not mention `default-features` but the dependency mentions `default-features`, so this explicitly turns off default features for `cranelift-codegen` at the workspace level and removes the explicit `default-features = false` at the manifest levels. * Explicitly enable default feature in wasmtime * Enable another feature
This commit is contained in:
@@ -13,9 +13,9 @@ edition.workspace = true
|
||||
|
||||
[dependencies]
|
||||
wasmparser = { workspace = true }
|
||||
cranelift-codegen = { workspace = true, default-features = false }
|
||||
cranelift-codegen = { workspace = true }
|
||||
cranelift-entity = { workspace = true }
|
||||
cranelift-frontend = { workspace = true, default-features = false }
|
||||
cranelift-frontend = { workspace = true }
|
||||
wasmtime-types = { workspace = true }
|
||||
hashbrown = { workspace = true, optional = true }
|
||||
itertools = "0.10.0"
|
||||
|
||||
Reference in New Issue
Block a user