From 42f2aa18bebaa3887bd64d5f3390e985cb962b2f Mon Sep 17 00:00:00 2001 From: Kartavya Vashishtha Date: Mon, 19 Aug 2024 17:46:15 -0400 Subject: [PATCH] deps: enable const-generics feature for smallvec --- components/experimental/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/experimental/Cargo.toml b/components/experimental/Cargo.toml index 7e13f363140..89bbee90dac 100644 --- a/components/experimental/Cargo.toml +++ b/components/experimental/Cargo.toml @@ -53,7 +53,7 @@ num-bigint = { workspace = true } num-rational = { workspace = true, features = ["num-bigint"]} num-traits = { workspace = true } serde = { workspace = true, features = ["derive", "alloc"], optional = true } -smallvec = { workspace = true } +smallvec = { workspace = true, features = ["const_generics"] } icu_experimental_data = { workspace = true, optional = true }