-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update priority queue #194
Conversation
@@ -21,18 +21,18 @@ include = ["Cargo.toml", "LICENSE", "README.md", "src/**", "tests/**", "examples | |||
|
|||
[dependencies] | |||
indexmap = "2.0.2" | |||
priority-queue = "1.1.1" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change log at https://github.com/garro95/priority-queue?tab=readme-ov-file#changes which all seem reasonable.
thiserror = "1.0" | ||
rustc-hash = "1.1.0" | ||
serde = { version = "1.0", features = ["derive"], optional = true } | ||
log = "0.4.14" # for debug logs in tests | ||
|
||
[dev-dependencies] | ||
proptest = "0.10.1" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change log at https://github.com/proptest-rs/proptest/blob/master/proptest/CHANGELOG.md#100 which all seem reasonable.
thiserror = "1.0" | ||
rustc-hash = "1.1.0" | ||
serde = { version = "1.0", features = ["derive"], optional = true } | ||
log = "0.4.14" # for debug logs in tests | ||
|
||
[dev-dependencies] | ||
proptest = "0.10.1" | ||
ron = "0.6" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change log at https://github.com/ron-rs/ron/blob/master/CHANGELOG.md#060---2020-05-21 which all seems reasonable. Although we also could use a bug fix from prerelease of 0.9
, but I have a separate PR for that.
varisat = "0.2.2" | ||
criterion = "0.5" | ||
env_logger = "0.9.0" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Change log at https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md#090----2022-07-14 which I don't entirely understand but seemed reasonable.
The commit message needs to follow conventional commits in order to successfully merge. |
05d8bc9
to
2f8baa0
Compare
Sorry, fixed |
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.
2f8baa0
to
0c1f5d3
Compare
Is there a reason there is no "chore" label for commits? |
Not a good one that I understand. If you would like to add it to the CI go ahead and do so. |
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.