From f8b8127cb0e0a9d4bf27e6c2ac52690816be1c9f Mon Sep 17 00:00:00 2001 From: Mingun Date: Tue, 15 Aug 2023 19:23:12 +0500 Subject: [PATCH] Temporary restrict maximum supported version of serde to 1.0.180 --- Cargo.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 805607bc..0be6faa8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,8 @@ include = ["src/*", "LICENSE-MIT.md", "README.md"] [dependencies] document-features = { version = "0.2", optional = true } encoding_rs = { version = "0.8", optional = true } -serde = { version = "1.0.100", optional = true } +# FIXME: remove upper bound when https://github.com/tafia/quick-xml/issues/630 is resolved +serde = { version = ">=1.0.100,<1.0.181", optional = true } tokio = { version = "1.10", optional = true, default-features = false, features = ["io-util"] } memchr = "2.1" arbitrary = { version = "1.2.3", features = ["derive"], optional = true }