blob: 06f0975ed24962d9a3fbd9905d3ca13ea707d3d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
From: Matthew Fennell <matthew@fennell.dev>
Date: Sun, 12 Oct 2025 12:39:29 +0100
Subject: Allow later versions of pyo3 in Cargo.toml
The currently packaged version of pyo3 is 0.25.1, while Cargo.toml requires
0.18. Loosen this requirement to compile with the later version of pyo3.
---
Cargo.toml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Cargo.toml b/Cargo.toml
index 0813be1..76e9b7b 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -9,4 +9,4 @@ name = "slidge_style_parser"
crate-type = ["cdylib"]
[dependencies]
-pyo3 = "0.18.1"
+pyo3 = "=0.26.0"
|