From ae1f859225bd85be1e6eac14d5e78b56b7f2e12e Mon Sep 17 00:00:00 2001 From: Stephen Chung Date: Thu, 8 Jul 2021 12:07:30 +0800 Subject: [PATCH] Bump codegen version requirement. --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 834c4e29..51d93977 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,10 +20,10 @@ smallvec = { version = "1.6", default-features = false, features = ["union"] } ahash = { version = "0.7", default-features = false } num-traits = { version = "0.2", default-features = false } smartstring = { version = "0.2.6", default-features = false } -rhai_codegen = { version = ">=0.4.0", path = "codegen", default-features = false } +rhai_codegen = { version = "1.0", path = "codegen", default-features = false } [features] -default = ["smartstring/std", "ahash/std", "num-traits/std"] # remove 'smartstring/std' when smartstring is updated to support no-std +default = ["ahash/std", "num-traits/std"] unchecked = [] # unchecked arithmetic sync = [] # restrict to only types that implement Send + Sync no_position = [] # do not track position in the parser