-
Notifications
You must be signed in to change notification settings - Fork 12
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
bump dependency versions #4
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -11,25 +11,15 @@ homepage = "https://cosmwasm.com" | |||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||||||
|
||||||
[dependencies] | ||||||
cosmwasm-schema = "1.0.0" | ||||||
cosmwasm-std = "1.0.0" | ||||||
cw2 = "0.16" | ||||||
cosmwasm-schema = "1.1.9" | ||||||
cosmwasm-std = "1.1.9" | ||||||
cw2 = "1.0.0" | ||||||
schemars = "0.8.1" | ||||||
semver = "1" | ||||||
serde = { version = "1.0.0", default-features = false, features = ["derive"] } | ||||||
thiserror = "1.0.13" | ||||||
|
||||||
# We don't use the following dependencies directly. They're dependencies of our dependencies. | ||||||
# We specify them to tighten their version requirements so that builds with `-Zminimal-versions` work. | ||||||
# Once we bump `cosmwasm-*` deps to a version after `1.1.5`, we can remove these. | ||||||
k256 = { version = "0.11.1", features = ["ecdsa"] } | ||||||
anyhow = "1.0.41" | ||||||
|
||||||
[dev-dependencies] | ||||||
cw-storage-plus = "0.16" | ||||||
prost = "0.9" | ||||||
|
||||||
# We don't use the following dependencies directly. They're dependencies of our dependencies. | ||||||
# We specify them to tighten their version requirements so that builds with `-Zminimal-versions` work. | ||||||
# Once we bump `cosmwasm-*` deps to a version after `1.1.5`, we can remove these. | ||||||
serde_json = "1.0.40" | ||||||
cw-storage-plus = "1.0.1" | ||||||
prost = "0.11.0" | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The problem with those changes it it makes the patch release invisible. This is often the cause for setting the min version of a dependency too low. If there is There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. IMO it doesn't make them invisible - it literally means the same. I would go even further, some users who don't understand how Cargo dep versioning works might be confused. |
||||||
anyhow = "1.0.65" # Not used directly but prost-derive does not set a sufficiently high anyhow version |
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.