security: upgrade smallvec to 1.6.1

Fixes advisory https://rustsec.org/advisories/RUSTSEC-2021-0003.
This commit is contained in:
Andrew Brown
2021-01-08 16:54:54 -08:00
parent b25a3c387e
commit 2adb0e8964
8 changed files with 9 additions and 9 deletions

View File

@@ -22,7 +22,7 @@ log = { version = "0.4.6", default-features = false }
serde = { version = "1.0.94", features = ["derive"], optional = true }
bincode = { version = "1.2.1", optional = true }
gimli = { version = "0.23.0", default-features = false, features = ["write"], optional = true }
smallvec = { version = "1.0.0" }
smallvec = { version = "1.6.1" }
thiserror = "1.0.4"
byteorder = { version = "1.3.2", default-features = false }
peepmatic = { path = "../peepmatic", optional = true, version = "0.69.0" }

View File

@@ -15,7 +15,7 @@ cranelift-codegen = { path = "../codegen", version = "0.69.0", default-features
target-lexicon = "0.11"
log = { version = "0.4.6", default-features = false }
hashbrown = { version = "0.9.1", optional = true }
smallvec = { version = "1.0.0" }
smallvec = { version = "1.6.1" }
[features]
default = ["std"]

View File

@@ -15,7 +15,7 @@ cranelift-codegen = { path = "../codegen", version = "0.69.0", features = ["all-
cranelift-entity = { path = "../entity", version = "0.69.0" }
cranelift-reader = { path = "../reader", version = "0.69.0" }
log = { version = "0.4.8", default-features = false }
smallvec = "1.4.2"
smallvec = "1.6.1"
thiserror = "1.0.15"
[dev-dependencies]

View File

@@ -11,7 +11,7 @@ edition = "2018"
[dependencies]
cranelift-codegen = { path = "../codegen", version = "0.69.0" }
smallvec = "1.0.0"
smallvec = "1.6.1"
target-lexicon = "0.11"
thiserror = "1.0.15"

View File

@@ -20,7 +20,7 @@ hashbrown = { version = "0.9.1", optional = true }
itertools = "0.9.0"
log = { version = "0.4.6", default-features = false }
serde = { version = "1.0.94", features = ["derive"], optional = true }
smallvec = "1.0.0"
smallvec = "1.6.1"
thiserror = "1.0.4"
[dev-dependencies]