1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
From: Alessandro Astone <alessandro.astone@canonical.com>
Date: Wed, 16 Apr 2025 14:22:09 +0200
Subject: cargo: Use deprecated serde-yaml crate for tests
Forwarded: not-needed
---
tests/Cargo.toml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/Cargo.toml b/tests/Cargo.toml
index 0482a0f..5b7f2f8 100644
--- a/tests/Cargo.toml
+++ b/tests/Cargo.toml
@@ -23,8 +23,8 @@ gdk.workspace = true
zbus = { workspace = true, features = ["p2p"] }
tracing-subscriber.workspace = true
# The unmaintained serde_yaml 0.9 crate should work here as well
-# serde_yaml = "0.9.33"
-serde_yaml = { package = "serde_yaml_ng", version = "0.10.0" }
+serde_yaml = "0.9.33"
+# serde_yaml = { package = "serde_yaml_ng", version = "0.10.0" }
[[test]]
name = "change_memory_format"
|