From 50a0f14bfc0a804834598cb6b2fe5b07f8980da3 Mon Sep 17 00:00:00 2001 From: Stephen Chung Date: Sun, 12 Apr 2020 21:24:30 +0800 Subject: [PATCH] Use version numbers in Cargo.toml --- Cargo.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 29511043..87cd6436 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,7 +17,7 @@ keywords = [ "scripting" ] categories = [ "no-std", "embedded", "parser-implementations" ] [dependencies] -num-traits = "*" +num-traits = { version = "0.2.11", default-features = false } [features] #default = ["no_stdlib", "no_function", "no_index", "no_object", "no_float", "only_i32", "unchecked", "no_optimize", "sync"] @@ -46,21 +46,21 @@ codegen-units = 1 #panic = 'abort' # remove stack backtrace for no-std [dependencies.libm] -version = "*" +version = "0.2.1" optional = true [dependencies.core-error] -version = "*" +version = "0.0.0" features = ["alloc"] optional = true [dependencies.hashbrown] -version = "*" +version = "0.7.1" default-features = false features = ["ahash", "nightly", "inline-more"] optional = true [dependencies.ahash] -version = "*" +version = "0.3.2" default-features = false optional = true