From c0e3dcffdd94da03dcd848286973afaf1601ce1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20du=20Garreau?= Date: Thu, 1 Jun 2023 11:09:41 +0200 Subject: [PATCH] Update pyo3 to `0.19` --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 7931620..aa94dd5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,10 +18,10 @@ rust-version = "1.48.0" arc-swap = "~1" # It's OK to ask for std on log, because pyo3 needs it too. log = { version = "~0.4.4", default-features = false, features = ["std"] } -pyo3 = { version = ">=0.14, <0.19", default-features = false } +pyo3 = { version = ">=0.14, <0.20", default-features = false } [dev-dependencies] -pyo3 = { version = ">=0.14, <0.19", default-features = false, features = ["auto-initialize", "macros"] } +pyo3 = { version = ">=0.14, <0.20", default-features = false, features = ["auto-initialize", "macros"] } # `pyo3-macros` is lying about the minimal version for its `syn` dependency. # Because we're testing with `-Zminimal-versions`, we need to explicitly set it here.