Explicitly enable the std feature of indexmap (#519)
* Explicitly enable the `std` feature of indexmap This crate depends on it anyway, and by explicitly turning it on we avoid unreliable platform target detection that causes build failures on some platforms. * Bump indexmap to 1.5.2 This allows use of the `std` feature. Co-authored-by: Taiki Endo <te316e89@gmail.com> Co-authored-by: Taiki Endo <te316e89@gmail.com>
This commit is contained in:
@@ -50,7 +50,7 @@ http = "0.2"
|
|||||||
tracing = { version = "0.1.21", default-features = false, features = ["std"] }
|
tracing = { version = "0.1.21", default-features = false, features = ["std"] }
|
||||||
fnv = "1.0.5"
|
fnv = "1.0.5"
|
||||||
slab = "0.4.2"
|
slab = "0.4.2"
|
||||||
indexmap = "1.0"
|
indexmap = { version = "1.5.2", features = ["std"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user