-
Notifications
You must be signed in to change notification settings - Fork 507
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
build(deps): Depend on multimap 0.8 or 0.9 #958
Conversation
@@ -25,7 +25,7 @@ bytes = { version = "1", default-features = false } | |||
heck = "0.4" | |||
itertools = { version = "0.10", default-features = false, features = ["use_alloc"] } | |||
log = "0.4" | |||
multimap = { version = "0.8", default-features = false } | |||
multimap = { version = ">=0.8, <0.10", default-features = false } |
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.
why less than 0.10?
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.
Personally, I think this syntax explains better the intent of the version bounds.
multimap = { version = ">=0.8, <0.10", default-features = false } | |
multimap = { version = ">=0.8, <=0.9", default-features = false } |
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.
Please rebase on the latest master branch. It seems multimap 0.10 has been released since the creation of this PR.
@@ -25,7 +25,7 @@ bytes = { version = "1", default-features = false } | |||
heck = "0.4" | |||
itertools = { version = "0.10", default-features = false, features = ["use_alloc"] } | |||
log = "0.4" | |||
multimap = { version = "0.8", default-features = false } | |||
multimap = { version = ">=0.8, <0.10", default-features = false } |
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.
Personally, I think this syntax explains better the intent of the version bounds.
multimap = { version = ">=0.8, <0.10", default-features = false } | |
multimap = { version = ">=0.8, <=0.9", default-features = false } |
Fixed in #1013 |
Depend on
multimap
version 0.8 or 0.9.