Skip to content

Commit

Permalink
Add std default feature
Browse files Browse the repository at this point in the history
  • Loading branch information
Gianmarco Garrisi committed Feb 24, 2024
1 parent 4b3c7fb commit 8ea1914
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "priority-queue"
version = "1.4.0"
version = "2.0.0"
authors = ["Gianmarco Garrisi <gianmarcogarrisi@tutanota.com>"]
description = "A Priority Queue implemented as a heap with a function to efficiently change the priority of an item."
repository = "https://github.com/garro95/priority-queue"
Expand All @@ -17,7 +17,7 @@ build = "build.rs"
autocfg = "1"

[dependencies]
indexmap = "2"
indexmap = {version = "2", features = [], default-features = false}
serde = { version = "1", optional = true }

[dev-dependencies]
Expand All @@ -28,6 +28,8 @@ uuid = {version= "1", features = ["v4", "serde"] }
hashbrown = "0.14"

[features]
default = ["std"]
std = ["indexmap/std"]
benchmarks = []

[workspace]
Expand Down

0 comments on commit 8ea1914

Please sign in to comment.