summaryrefslogtreecommitdiff
path: root/debian/patches/0001-Allow-later-versions-of-pyo3-in-Cargo.toml.patch
blob: 69934b72fc47dc0daab004d791fb413386c7ff32 (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..09d9bd9 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"