Skip to content

Commit

Permalink
fix: move indexmap dependency declaration to the virtual workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
somedevfox committed Aug 27, 2024
1 parent d8a81aa commit 0185e12
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
2 changes: 1 addition & 1 deletion crates/config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 * #
Expand Down
2 changes: 1 addition & 1 deletion crates/ui/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,14 +76,14 @@ 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",
] } # High-quality syntax highlighting and code intelligence using Sublime Text's grammars
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/" }

0 comments on commit 0185e12

Please sign in to comment.