Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ abi3-py313 = ["pyo3/abi3-py313"]
abi3-py314 = ["pyo3/abi3-py314"]

[dependencies]
tokio = { version = "1.50.0", features = ["sync"]}
tokio = { version = "1.50.0", features = ["sync"] }
tokio-util = "0.7.18"
pyo3 = { version = "0.28.2", features = [
pyo3 = { version = "0.28.3", features = [
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The pyo3 dependency is being updated to 0.28.3. However, the pybacked feature is missing from the features list, even though PyBackedStr is used extensively throughout src/lib.rs. Additionally, it is recommended to update pyo3-async-runtimes to version 0.28.3 to maintain consistency with the pyo3 version, as these crates are typically released together and share internal dependencies.

Suggested change
pyo3 = { version = "0.28.3", features = [
pyo3 = { version = "0.28.3", features = [
"pybacked",

"indexmap",
"multiple-pymethods",
"extension-module",
Expand Down Expand Up @@ -86,4 +86,4 @@ panic = "abort"
strip = true

[patch.crates-io]
wreq = { git = "https://github.com/0x676e67/wreq", rev = "240d84eab5eb4df8548933ee2c13337d86e1afe1" }
wreq = { git = "https://github.com/0x676e67/wreq", rev = "240d84eab5eb4df8548933ee2c13337d86e1afe1" }
Loading