From f080077117085ac011b52b64a121894f44f0096a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20du=20Garreau?= Date: Thu, 12 Oct 2023 17:40:59 +0200 Subject: [PATCH] Update Pyo3 to 0.20 --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 47f58be..e2600b7 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.20", default-features = false } +pyo3 = { version = ">=0.14, <0.21", default-features = false } [dev-dependencies] -pyo3 = { version = ">=0.14, <0.20", default-features = false, features = ["auto-initialize", "macros"] } +pyo3 = { version = ">=0.14, <0.21", 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.