diff --git a/Cargo.lock b/Cargo.lock index f35d9a55b240..269281ec909b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -250,9 +250,8 @@ dependencies = [ [[package]] name = "pyo3" -version = "0.22.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f402062616ab18202ae8319da13fa4279883a2b8a9d9f83f20dbade813ce1884" +version = "0.23.0-dev" +source = "git+https://github.com/pyo3/pyo3#ee229cfc3d64200684b58fd593ba037fe485d933" dependencies = [ "cfg-if", "indoc", @@ -268,9 +267,8 @@ dependencies = [ [[package]] name = "pyo3-build-config" -version = "0.22.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b14b5775b5ff446dd1056212d778012cbe8a0fbffd368029fd9e25b514479c38" +version = "0.23.0-dev" +source = "git+https://github.com/pyo3/pyo3#ee229cfc3d64200684b58fd593ba037fe485d933" dependencies = [ "once_cell", "target-lexicon", @@ -278,9 +276,8 @@ dependencies = [ [[package]] name = "pyo3-ffi" -version = "0.22.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9ab5bcf04a2cdcbb50c7d6105de943f543f9ed92af55818fd17b660390fc8636" +version = "0.23.0-dev" +source = "git+https://github.com/pyo3/pyo3#ee229cfc3d64200684b58fd593ba037fe485d933" dependencies = [ "libc", "pyo3-build-config", @@ -288,9 +285,8 @@ dependencies = [ [[package]] name = "pyo3-macros" -version = "0.22.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0fd24d897903a9e6d80b968368a34e1525aeb719d568dba8b3d4bfa5dc67d453" +version = "0.23.0-dev" +source = "git+https://github.com/pyo3/pyo3#ee229cfc3d64200684b58fd593ba037fe485d933" dependencies = [ "proc-macro2", "pyo3-macros-backend", @@ -300,9 +296,8 @@ dependencies = [ [[package]] name = "pyo3-macros-backend" -version = "0.22.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "36c011a03ba1e50152b4b394b479826cad97e7a21eb52df179cd91ac411cbfbe" +version = "0.23.0-dev" +source = "git+https://github.com/pyo3/pyo3#ee229cfc3d64200684b58fd593ba037fe485d933" dependencies = [ "heck", "proc-macro2", diff --git a/src/rust/Cargo.toml b/src/rust/Cargo.toml index e6f1af8ae696..f91976e49502 100644 --- a/src/rust/Cargo.toml +++ b/src/rust/Cargo.toml @@ -9,7 +9,7 @@ rust-version.workspace = true [dependencies] once_cell = "1" cfg-if = "1" -pyo3 = { version = "0.22.6", features = ["abi3"] } +pyo3 = { git = "https://github.com/pyo3/pyo3", features = ["abi3"] } asn1.workspace = true cryptography-cffi = { path = "cryptography-cffi" } cryptography-keepalive = { path = "cryptography-keepalive" } diff --git a/src/rust/cryptography-cffi/Cargo.toml b/src/rust/cryptography-cffi/Cargo.toml index 35a681369d31..89c3711e90b0 100644 --- a/src/rust/cryptography-cffi/Cargo.toml +++ b/src/rust/cryptography-cffi/Cargo.toml @@ -7,7 +7,7 @@ publish.workspace = true rust-version.workspace = true [dependencies] -pyo3 = { version = "0.22.6", features = ["abi3"] } +pyo3 = { git = "https://github.com/pyo3/pyo3", features = ["abi3"] } openssl-sys = "0.9.104" [build-dependencies] diff --git a/src/rust/cryptography-keepalive/Cargo.toml b/src/rust/cryptography-keepalive/Cargo.toml index 8e27bd18b055..5cb3e7af1275 100644 --- a/src/rust/cryptography-keepalive/Cargo.toml +++ b/src/rust/cryptography-keepalive/Cargo.toml @@ -7,4 +7,4 @@ publish.workspace = true rust-version.workspace = true [dependencies] -pyo3 = { version = "0.22.6", features = ["abi3"] } +pyo3 = { git = "https://github.com/pyo3/pyo3", features = ["abi3"] }