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
|
From: Arnaud Ferraris <arnaud.ferraris@collabora.com>
Date: Tue, 24 Sep 2024 17:32:51 +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 | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/Cargo.toml b/Cargo.toml
index 94e9668..e84f449 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -180,3 +180,18 @@ v2_78 = [
"ffi/v2_78",
"gobject_ffi/v2_78",
]
+v2_80 = [
+ "v2_78",
+ "ffi/v2_80",
+ "gobject_ffi/v2_80",
+]
+v2_82 = [
+ "v2_80",
+ "ffi/v2_82",
+ "gobject_ffi/v2_82",
+]
+v2_84 = [
+ "v2_82",
+ "ffi/v2_84",
+ "gobject_ffi/v2_84",
+]
|