From b5026d1459926a804a9c9556dce4e4fa2c4d5656 Mon Sep 17 00:00:00 2001 From: Ben Kimock Date: Thu, 4 Mar 2021 23:34:35 -0500 Subject: [PATCH] Drop the union feature from smallvec for 1.45 --- crates/proto/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/proto/Cargo.toml b/crates/proto/Cargo.toml index 14519e6426..8a7cc7f5d4 100644 --- a/crates/proto/Cargo.toml +++ b/crates/proto/Cargo.toml @@ -75,7 +75,7 @@ openssl = { version = "0.10", features = ["v102", "v110"], optional = true } rand = "0.8" ring = { version = "0.16", optional = true, features = ["std"] } serde = { version = "1.0", features = ["derive"], optional = true } -smallvec = { version = "1.6", features = ["union"] } +smallvec = "1.6" socket2 = { version = "0.3.16", optional = true } thiserror = "1.0.20" tinyvec = { version = "1.1.1", features = ["alloc"] }