common: Explicitly enable std feature of indexmap

Otherwise, it fails to build with -Z build-std, see
https://github.com/cuviper/autocfg/issues/34
This commit is contained in:
Matthew Hodgson 2022-12-28 22:10:08 +00:00 committed by Jonas Platte
parent 022a0c0475
commit 0578e7af50
No known key found for this signature in database
GPG Key ID: AAA7A61F696C3E0C

View File

@ -54,7 +54,7 @@ form_urlencoded = "1.0.0"
getrandom = { version = "0.2.6", optional = true }
html5ever = { version = "0.25.2", optional = true }
http = { workspace = true, optional = true }
indexmap = { version = "1.9.1", features = ["serde"] }
indexmap = { version = "1.9.1", features = ["serde", "std"] }
js_int = { workspace = true, features = ["serde"] }
js_option = "0.1.0"
konst = { version = "0.2.19", features = ["rust_1_64", "alloc"] }