Skip to content

Commit 94276e9

Browse files
authored
feat: update priority queue (pubgrub-rs#194)
I've been looking at duplicate dependencies in our tree and priority-queue 1 was pulling in old versions of indexmap and hashbrown, so i've updated all dependencies.
1 parent 71385b7 commit 94276e9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,18 @@ include = ["Cargo.toml", "LICENSE", "README.md", "src/**", "tests/**", "examples
2121

2222
[dependencies]
2323
indexmap = "2.0.2"
24-
priority-queue = "1.1.1"
24+
priority-queue = "2.0.2"
2525
thiserror = "1.0"
2626
rustc-hash = "1.1.0"
2727
serde = { version = "1.0", features = ["derive"], optional = true }
2828
log = "0.4.14" # for debug logs in tests
2929

3030
[dev-dependencies]
31-
proptest = "0.10.1"
32-
ron = "0.6"
31+
proptest = "1.4.0"
32+
ron = "0.8.1"
3333
varisat = "0.2.2"
3434
criterion = "0.5"
35-
env_logger = "0.9.0"
35+
env_logger = "0.11.3"
3636

3737
[[bench]]
3838
name = "large_case"

0 commit comments

Comments
 (0)