about summary refs log tree commit diff
path: root/src/tools/rustc-workspace-hack/Cargo.toml
diff options
context:
space:
mode:
authorJubilee Young <workingjubilee@gmail.com>2021-04-21 21:40:29 -0700
committerJubilee Young <workingjubilee@gmail.com>2021-04-21 22:39:08 -0700
commite8eb691c1fccc84cf8cf2194b20f0cefafa10fa1 (patch)
tree97d719bab82b78b88e06f5be5419f4aed8b1928b /src/tools/rustc-workspace-hack/Cargo.toml
parentb849326744a8eec939e592f0ab13bff85cc865d3 (diff)
downloadrust-e8eb691c1fccc84cf8cf2194b20f0cefafa10fa1.tar.gz
rust-e8eb691c1fccc84cf8cf2194b20f0cefafa10fa1.zip
Use arrayvec 0.7, drop smallvec 0.6
With the arrival of min const generics, many alt-vec libraries have
updated to use it in some way and arrayvec is no exception. Use the
latest with minor refactoring.

Also, rustc_workspace_hack is the only user of smallvec 0.6 in the
entire tree, so drop it.
Diffstat (limited to 'src/tools/rustc-workspace-hack/Cargo.toml')
-rw-r--r--src/tools/rustc-workspace-hack/Cargo.toml1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/tools/rustc-workspace-hack/Cargo.toml b/src/tools/rustc-workspace-hack/Cargo.toml
index 8da7db2dfdd..5776d56d187 100644
--- a/src/tools/rustc-workspace-hack/Cargo.toml
+++ b/src/tools/rustc-workspace-hack/Cargo.toml
@@ -71,7 +71,6 @@ proc-macro2 = { version = "1", features = ["default"] }
 quote = { version = "1", features = ["default"] }
 serde = { version = "1.0.82", features = ['derive'] }
 serde_json = { version = "1.0.31", features = ["raw_value", "unbounded_depth"] }
-smallvec-0_6 = { package = "smallvec", version = "0.6.14", features = ['union', 'may_dangle'] }
 smallvec = { version = "1.6.1", features = ['union', 'may_dangle'] }
 syn = { version = "1", features = ['fold', 'full', 'extra-traits', 'visit', 'visit-mut'] }
 url = { version = "2.0", features = ['serde'] }