Skip to content
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 jiter to 0.8.2, PyO3 to 0.23.3 #1570

Merged
merged 1 commit into from
Dec 4, 2024
Merged
Show file tree
Hide file tree
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
24 changes: 12 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ rust-version = "1.75"
[dependencies]
# TODO it would be very nice to remove the "py-clone" feature as it can panic,
# but needs a bit of work to make sure it's not used in the codebase
pyo3 = { version = "0.23.2", features = ["generate-import-lib", "num-bigint", "py-clone"] }
pyo3 = { version = "0.23.3", features = ["generate-import-lib", "num-bigint", "py-clone"] }
regex = "1.11.1"
strum = { version = "0.26.3", features = ["derive"] }
strum_macros = "0.26.4"
Expand All @@ -45,7 +45,7 @@ idna = "1.0.3"
base64 = "0.22.1"
num-bigint = "0.4.6"
uuid = "1.11.0"
jiter = { version = "0.8.0", features = ["python"] }
jiter = { version = "0.8.2", features = ["python"] }
hex = "0.4.3"

[lib]
Expand Down Expand Up @@ -73,12 +73,12 @@ debug = true
strip = false

[dev-dependencies]
pyo3 = { version = "0.23.2", features = ["auto-initialize"] }
pyo3 = { version = "0.23.3", features = ["auto-initialize"] }

[build-dependencies]
version_check = "0.9.5"
# used where logic has to be version/distribution specific, e.g. pypy
pyo3-build-config = { version = "0.23.2" }
pyo3-build-config = { version = "0.23.3" }

[lints.clippy]
dbg_macro = "warn"
Expand Down
Loading