Remove hard-coded version numbers for no_std build dependencies.

This commit is contained in:
Stephen Chung 2020-03-26 20:26:27 +08:00
parent 56df5c49c8
commit a8b270a661

View File

@ -42,21 +42,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 = "0.2.1" version = "*"
optional = true optional = true
[dependencies.core-error] [dependencies.core-error]
version = "0.0.1-rc4" version = "*"
features = ["alloc"] features = ["alloc"]
optional = true optional = true
[dependencies.hashbrown] [dependencies.hashbrown]
version = "0.7.1" version = "*"
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 = "0.3.2" version = "*"
default-features = false default-features = false
optional = true optional = true