Skip to content

Commit

Permalink
fix: update indexmap and add its feature to Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Oct 25, 2023
1 parent 1380764 commit d415d54
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ categories = ["data-structures", "caching"]

[dependencies]
stable_deref_trait = "1.1.1"
indexmap = { version = "1.6", optional = true }
indexmap = { version = "2.0.2", optional = true }

[package.metadata.docs.rs]
features = ["indexmap"]
Expand All @@ -21,3 +21,7 @@ features = ["indexmap"]
name = "string_interner"
path = "examples/string_interner.rs"
required-features = ["indexmap"]

[features]
default = []
indexmap = ["dep:indexmap"]

0 comments on commit d415d54

Please sign in to comment.