Skip to content

Commit

Permalink
Merge pull request #70 from aminya/update-deps
Browse files Browse the repository at this point in the history
fix: update indexmap and add its feature to Cargo.toml
  • Loading branch information
Manishearth authored Oct 25, 2023
2 parents 1380764 + d415d54 commit 636db2b
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 636db2b

Please sign in to comment.