File: tests-serde-yaml.diff

package info (click to toggle)
glycin 2.0.7%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 12,624 kB
  • sloc: python: 432; ansic: 215; xml: 70; makefile: 28; sh: 27; javascript: 10
file content (24 lines) | stat: -rw-r--r-- 795 bytes parent folder | 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
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"