Use version numbers in Cargo.toml
This commit is contained in:
parent
bc0d43d68f
commit
50a0f14bfc
10
Cargo.toml
10
Cargo.toml
@ -17,7 +17,7 @@ keywords = [ "scripting" ]
|
|||||||
categories = [ "no-std", "embedded", "parser-implementations" ]
|
categories = [ "no-std", "embedded", "parser-implementations" ]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
num-traits = "*"
|
num-traits = { version = "0.2.11", default-features = false }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
#default = ["no_stdlib", "no_function", "no_index", "no_object", "no_float", "only_i32", "unchecked", "no_optimize", "sync"]
|
#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
|
#panic = 'abort' # remove stack backtrace for no-std
|
||||||
|
|
||||||
[dependencies.libm]
|
[dependencies.libm]
|
||||||
version = "*"
|
version = "0.2.1"
|
||||||
optional = true
|
optional = true
|
||||||
|
|
||||||
[dependencies.core-error]
|
[dependencies.core-error]
|
||||||
version = "*"
|
version = "0.0.0"
|
||||||
features = ["alloc"]
|
features = ["alloc"]
|
||||||
optional = true
|
optional = true
|
||||||
|
|
||||||
[dependencies.hashbrown]
|
[dependencies.hashbrown]
|
||||||
version = "*"
|
version = "0.7.1"
|
||||||
default-features = false
|
default-features = false
|
||||||
features = ["ahash", "nightly", "inline-more"]
|
features = ["ahash", "nightly", "inline-more"]
|
||||||
optional = true
|
optional = true
|
||||||
|
|
||||||
[dependencies.ahash]
|
[dependencies.ahash]
|
||||||
version = "*"
|
version = "0.3.2"
|
||||||
default-features = false
|
default-features = false
|
||||||
optional = true
|
optional = true
|
||||||
|
Loading…
Reference in New Issue
Block a user