From e7333dc6c114c3191e3984ce04e8ad41e74a62cc Mon Sep 17 00:00:00 2001 From: Stephen Chung Date: Wed, 24 Aug 2022 23:17:12 +0800 Subject: [PATCH] Add smallvec feature. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7ccfe77d..c4e9e2cd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ keywords = ["scripting", "scripting-engine", "scripting-language", "embedded"] categories = ["no-std", "embedded", "wasm", "parser-implementations"] [dependencies] -smallvec = { version = "1.7", default-features = false, features = ["union", "const_new" ] } +smallvec = { version = "1.7", default-features = false, features = ["union", "const_new", "const_generics"] } ahash = { version = "0.8", default-features = false } num-traits = { version = "0.2", default-features = false } bitflags = { version = "1", default-features = false }