Package: rust-glib-sys-0.18 / 0.18.1-2

0003-Cargo.toml-add-missing-features.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
From: Arnaud Ferraris <arnaud.ferraris@collabora.com>
Date: Tue, 24 Sep 2024 13:58:29 +0200
Subject: Cargo.toml: add missing features

We build against glib 2.84, so we must add a couple additional features
for automated tests to pass.

Forwarded: not-needed
---
 Cargo.toml | 14 +++++++++++++-
 1 file changed, 13 insertions(+), 1 deletion(-)

diff --git a/Cargo.toml b/Cargo.toml
index e32ce96..f9fcca4 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -75,7 +75,16 @@ version = "2.74"
 version = "2.76"
 
 [package.metadata.system-deps.glib_2_0.v2_78]
-version = "2.77"
+version = "2.78"
+
+[package.metadata.system-deps.glib_2_0.v2_80]
+version = "2.80"
+
+[package.metadata.system-deps.glib_2_0.v2_82]
+version = "2.82"
+
+[package.metadata.system-deps.glib_2_0.v2_84]
+version = "2.83"
 
 [package.metadata.system-deps.gobject_2_0]
 name = "gobject-2.0"
@@ -114,3 +123,6 @@ v2_72 = ["v2_70"]
 v2_74 = ["v2_72"]
 v2_76 = ["v2_74"]
 v2_78 = ["v2_76"]
+v2_80 = ["v2_78"]
+v2_82 = ["v2_80"]
+v2_84 = ["v2_82"]