Skip to content

Commit

Permalink
bump indexmap to 2.0.0
Browse files Browse the repository at this point in the history
As raised in #39, in some scenarios the `std` detection in `indexmap` causes
compilation failure due to the changing generic parameters of `IndexMap`.
The 2.0.0 series changes the `std` detection behavior.
  • Loading branch information
pfernie committed Aug 12, 2023
1 parent 1d488e3 commit 6006e02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["Patrick Fernie <[email protected]>"]
description = "Implementation of Cookie storage and retrieval"
name = "cookie_store"
version = "0.20.0" # managed by release.sh
version = "0.21.0-pre" # managed by release.sh
edition = "2018"
repository = "https://github.com/pfernie/cookie_store"
documentation = "https://docs.rs/cookie_store"
Expand Down Expand Up @@ -36,7 +36,7 @@ serde_json = "1.0.87"
time = "0.3.16"
url = "2.3.1"

indexmap = { version = "1.9.1", optional = true }
indexmap = { version = "2.0.0", optional = true }

[dependencies.cookie]
features = ["percent-encode"]
Expand Down

0 comments on commit 6006e02

Please sign in to comment.