about summary refs log tree commit diff
path: root/src/librustc_data_structures
diff options
context:
space:
mode:
authorRalf Jung <post@ralfj.de>2019-11-04 15:59:09 +0100
committerRalf Jung <post@ralfj.de>2019-11-04 15:59:09 +0100
commit90b8d34c9f0d17c948801f676a96800e8b038508 (patch)
tree04d11ad36a3fea26f93db0a92aacf509075c46b4 /src/librustc_data_structures
parentab6e47851b51a413db5d721f25d714653e7549fd (diff)
downloadrust-90b8d34c9f0d17c948801f676a96800e8b038508.tar.gz
rust-90b8d34c9f0d17c948801f676a96800e8b038508.zip
bump smallvec to 1.0
Diffstat (limited to 'src/librustc_data_structures')
-rw-r--r--src/librustc_data_structures/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_data_structures/Cargo.toml b/src/librustc_data_structures/Cargo.toml
index 065c8436ae0..e79b3a81b96 100644
--- a/src/librustc_data_structures/Cargo.toml
+++ b/src/librustc_data_structures/Cargo.toml
@@ -23,7 +23,7 @@ stable_deref_trait = "1.0.0"
 rayon = { version = "0.3.0", package = "rustc-rayon" }
 rayon-core = { version = "0.3.0", package = "rustc-rayon-core" }
 rustc-hash = "1.0.1"
-smallvec = { version = "0.6.7", features = ["union", "may_dangle"] }
+smallvec = { version = "1.0", features = ["union", "may_dangle"] }
 rustc_index = { path = "../librustc_index", package = "rustc_index" }
 
 [dependencies.parking_lot]