From bc3de0c98e0f4ebda15a644ff10e844662a6f3d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Danie=CC=88l=20de=20Kok?= Date: Sun, 15 Oct 2023 12:48:49 +0200 Subject: [PATCH] Downgrade serde-yaml 0.9 to 0.8 We are running into this issue: https://github.com/dtolnay/serde-yaml/issues/378 --- syntaxdot-cli/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/syntaxdot-cli/Cargo.toml b/syntaxdot-cli/Cargo.toml index cb41762..caf44cc 100644 --- a/syntaxdot-cli/Cargo.toml +++ b/syntaxdot-cli/Cargo.toml @@ -27,7 +27,7 @@ log = "0.4" ndarray = "0.15" ordered-float = { version = "4", features = ["serde"] } rayon = "1" -serde_yaml = "0.9" +serde_yaml = "0.8" stdinout = "0.4" syntaxdot = { path = "../syntaxdot", version = "0.5.0", default-features = false } syntaxdot-encoders = { path = "../syntaxdot-encoders", version = "0.5.0" }