diff --git a/Cargo.toml b/Cargo.toml index 1d526acb..fcb6164d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -177,6 +177,7 @@ qp-trie = "0.8.2" # An idiomatic and fast QP-trie implementation itertools = "0.11.0" # Extra iterator adaptors, methods, functions and macros rand = "0.8.5" # Random number generators and other randomness functionality lexical-sort = "0.3.1" # Functions that compare and sort strings lexicographically +indexmap = "2.2.6" # A hash table with consistent order and fast iteration # Fast and performant. [profile.release] diff --git a/crates/config/Cargo.toml b/crates/config/Cargo.toml index 448311b2..b44e17eb 100644 --- a/crates/config/Cargo.toml +++ b/crates/config/Cargo.toml @@ -35,7 +35,7 @@ once_cell.workspace = true luminol-data.workspace = true # * Misc. * # -indexmap = "2.2.6" # A hash table with consistent order and fast iteration +indexmap.workspace = true [target.'cfg(not(target_arch = "wasm32"))'.dependencies] # * Window management, graphical user interface and 3D rendering * # diff --git a/crates/ui/Cargo.toml b/crates/ui/Cargo.toml index f81c7e69..e233e59a 100644 --- a/crates/ui/Cargo.toml +++ b/crates/ui/Cargo.toml @@ -76,7 +76,6 @@ zip = { version = "0.6.6", default-features = false, features = [ "deflate", ] } # Library to support the reading and writing of zip files indextree = "4.6.0" # Arena based tree structure by using indices instead of reference counted pointers -indexmap = "2.2.6" # A hash table with consistent order and fast iteration fuzzy-matcher = "0.3.7" # Fuzzy matching algorithms syntect = { version = "5.1.0", default-features = false, features = [ "default-fancy", @@ -84,6 +83,7 @@ syntect = { version = "5.1.0", default-features = false, features = [ qp-trie.workspace = true lexical-sort.workspace = true itertools.workspace = true +indexmap.workspace = true [target.'cfg(not(target_arch = "wasm32"))'.dependencies] luminol-term = { version = "0.4.0", path = "../term/" }