From 0c055904d3eb041148351dd4ba7cd8ca95086059 Mon Sep 17 00:00:00 2001 From: Alessandro Ghedini Date: Tue, 14 Jan 2025 18:02:38 +0000 Subject: [PATCH] disable 'serde' feature for smallvec This doesn't seem to be necessary, and was probably a copy-pasta from qlog since that one does require the feature to be enabled. --- quiche/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quiche/Cargo.toml b/quiche/Cargo.toml index cbd07b5b29..a1f6ec034b 100644 --- a/quiche/Cargo.toml +++ b/quiche/Cargo.toml @@ -75,7 +75,7 @@ foreign-types-shared = { version = "0.3.0", optional = true } intrusive-collections = "0.9.5" qlog = { version = "0.14", path = "../qlog", optional = true } sfv = { version = "0.9", optional = true } -smallvec = { version = "1.10", features = ["serde", "union"] } +smallvec = { version = "1.10", features = ["union"] } [target."cfg(windows)".dependencies] windows-sys = { version = "0.59", features = ["Win32_Networking_WinSock", "Win32_Security_Cryptography"] }