Update smallvec requirement from 0.6.10 to 1.0.0

Updates the requirements on [smallvec](https://github.com/servo/rust-smallvec) to permit the latest version.
- [Release notes](https://github.com/servo/rust-smallvec/releases)
- [Commits](https://github.com/servo/rust-smallvec/compare/v0.6.10...v1.0.0)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
This commit is contained in:
dependabot-preview[bot]
2019-11-04 13:18:21 +00:00
committed by Benjamin Bouvier
parent b4d92f0978
commit 811b5e0a7b
2 changed files with 2 additions and 2 deletions

View File

@@ -20,7 +20,7 @@ hashbrown = { version = "0.6", optional = true }
target-lexicon = "0.8.1" target-lexicon = "0.8.1"
log = { version = "0.4.6", default-features = false } log = { version = "0.4.6", default-features = false }
serde = { version = "1.0.94", features = ["derive"], optional = true } serde = { version = "1.0.94", features = ["derive"], optional = true }
smallvec = { version = "0.6.10" } smallvec = { version = "1.0.0" }
thiserror = "1.0.4" thiserror = "1.0.4"
# It is a goal of the cranelift-codegen crate to have minimal external dependencies. # It is a goal of the cranelift-codegen crate to have minimal external dependencies.
# Please don't add any unless they are essential to the task of creating binary # Please don't add any unless they are essential to the task of creating binary

View File

@@ -15,7 +15,7 @@ cranelift-codegen = { path = "../cranelift-codegen", version = "0.46.1", default
target-lexicon = "0.8.1" target-lexicon = "0.8.1"
log = { version = "0.4.6", default-features = false } log = { version = "0.4.6", default-features = false }
hashbrown = { version = "0.6", optional = true } hashbrown = { version = "0.6", optional = true }
smallvec = { version = "0.6.10" } smallvec = { version = "1.0.0" }
[features] [features]
default = ["std", "basic-blocks"] default = ["std", "basic-blocks"]