Skip to content

Commit

Permalink
Update dependencies to reflect minimal versions (#4272)
Browse files Browse the repository at this point in the history
Based on testing locally with `rm -f Cargo.lock && cargo +nightly check --tests --all -Z minimal-versions`
  • Loading branch information
alex committed Jun 21, 2024
1 parent 56341cb commit 9ff3d23
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ rust-version = "1.63"
cfg-if = "1.0"
libc = "0.2.62"
memoffset = "0.9"
once_cell = "1"
once_cell = "1.13.0"

# ffi bindings to the python interpreter, split into a separate crate so they can be used independently
pyo3-ffi = { path = "pyo3-ffi", version = "=0.22.0-dev" }
Expand Down
2 changes: 1 addition & 1 deletion pyo3-ffi-check/macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ proc-macro = true
[dependencies]
glob = "0.3"
quote = "1"
proc-macro2 = "1"
proc-macro2 = "1.0.60"
scraper = "0.17"
pyo3-build-config = { path = "../../pyo3-build-config" }
2 changes: 1 addition & 1 deletion pyo3-macros-backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ edition = "2021"
# See https://github.com/PyO3/pyo3/pull/810 for more.
[dependencies]
heck = "0.5"
proc-macro2 = { version = "1", default-features = false }
proc-macro2 = { version = "1.0.60", default-features = false }
pyo3-build-config = { path = "../pyo3-build-config", version = "=0.22.0-dev", features = ["resolve-config"] }
quote = { version = "1", default-features = false }

Expand Down
2 changes: 1 addition & 1 deletion pyo3-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ experimental-async = ["pyo3-macros-backend/experimental-async"]
gil-refs = ["pyo3-macros-backend/gil-refs"]

[dependencies]
proc-macro2 = { version = "1", default-features = false }
proc-macro2 = { version = "1.0.60", default-features = false }
quote = "1"
syn = { version = "2", features = ["full", "extra-traits"] }
pyo3-macros-backend = { path = "../pyo3-macros-backend", version = "=0.22.0-dev" }
Expand Down

0 comments on commit 9ff3d23

Please sign in to comment.