Loosen dependency version constraints for pyo3, serde, and serde_json #21
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description:
This PR updates the version constraints for the dependencies in our
Cargo.toml
file to provide more flexibility in dependency resolution. Specifically:Main Dependencies:
pyo3
from"0.23.0"
to">=0.23"
.serde
from"1.0.190"
to">=1.0"
.Dev Dependencies:
pyo3
from{ version = "0.23.0", features = ["auto-initialize"] }
to{ version = ">=0.23", features = ["auto-initialize"] }
.serde
from{ version = "1.0.190", features = ["derive"] }
to{ version = ">=1.0", features = ["derive"] }
.serde_json
from"1.0.108"
to">=1.0"
.Rationale:
pyo3
orserde
.Impact:
Cargo.toml
and should not affect the API or functionality.Additionally, I check what the minimum supported pyo3 version is and it is 0.23.0.
Please review and let me know if further adjustments are needed.