Skip to content

Commit

Permalink
Use version numbers in Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
schungx committed Apr 12, 2020
1 parent bc0d43d commit 50a0f14
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down Expand Up @@ -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

0 comments on commit 50a0f14

Please sign in to comment.