From 16f81fd5f9598684662ddde3f9f3541e2d3cba97 Mon Sep 17 00:00:00 2001 From: Stephen Chung Date: Wed, 10 Aug 2022 15:43:52 +0800 Subject: [PATCH] Add std feature. --- Cargo.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index acd895b5..82242c88 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ categories = ["no-std", "embedded", "wasm", "parser-implementations"] [dependencies] smallvec = { version = "1.7", default-features = false, features = ["union", "const_new" ] } -ahash = { version = "0.7", default-features = false } +ahash = { version = "0.8", default-features = false } num-traits = { version = "0.2", default-features = false } bitflags = { version = "1", default-features = false } smartstring = { version = "1", default-features = false } @@ -39,7 +39,8 @@ serde_bytes = "0.11" serde_json = { version = "1.0", default-features = false, features = ["alloc"] } [features] -default = [] +default = ["std"] +std = ["ahash/std", "ahash/runtime-rng", "num-traits/std", "smartstring/std"] unchecked = [] # unchecked arithmetic sync = [] # restrict to only types that implement Send + Sync no_position = [] # do not track position in the parser