Skip to content

Commit 3a207bd

Browse files
authored
wasm-wave: Fix building with no-default-features (#2263)
Depends on `indexmap/std` which is normally transitively enabled by wit-parser.
1 parent 7aee4a3 commit 3a207bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/wasm-wave/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ default = ["wit"]
1919
wit = ["dep:wit-parser"]
2020

2121
[dependencies]
22-
indexmap.workspace = true
22+
indexmap = { workspace = true, features = ["std"] }
2323
logos = { version = "0.14.2", features = ["forbid_unsafe"] }
2424
thiserror = { workspace = true }
2525
wit-parser = { workspace = true, optional = true }

0 commit comments

Comments
 (0)