From 71f426e7706cce9d0e970f6c1bf5770e273dd615 Mon Sep 17 00:00:00 2001 From: Vincent Tavernier Date: Sat, 16 Apr 2022 19:29:03 +0200 Subject: [PATCH] Enable indexmap std feature See: * https://github.com/petgraph/petgraph/issues/398 * https://github.com/bluss/indexmap/issues/151 --- glslt/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glslt/Cargo.toml b/glslt/Cargo.toml index 43c22cf..f2c8dcd 100644 --- a/glslt/Cargo.toml +++ b/glslt/Cargo.toml @@ -26,7 +26,7 @@ sha-1 = "0.10" petgraph = "0.6" bimap = "0.6" log = "0.4" -indexmap = "1.8" +indexmap = { version = "1.8", features = ["std"] } [dependencies.pyo3] version = "0.15"