mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-04 19:29:07 +00:00
internal: Enable smallvec's union
feature
This commit is contained in:
parent
44568007d1
commit
3c0f20a7bd
@ -74,3 +74,5 @@ toolchain = { path = "./crates/toolchain", version = "0.0.0" }
|
|||||||
tt = { path = "./crates/tt", version = "0.0.0" }
|
tt = { path = "./crates/tt", version = "0.0.0" }
|
||||||
vfs-notify = { path = "./crates/vfs-notify", version = "0.0.0" }
|
vfs-notify = { path = "./crates/vfs-notify", version = "0.0.0" }
|
||||||
vfs = { path = "./crates/vfs", version = "0.0.0" }
|
vfs = { path = "./crates/vfs", version = "0.0.0" }
|
||||||
|
# non-local crates
|
||||||
|
smallvec = { version = "1.10.0", features = ["const_new", "union", "const_generics"] }
|
||||||
|
@ -27,7 +27,7 @@ itertools = "0.10.5"
|
|||||||
la-arena = { version = "0.3.0", path = "../../lib/la-arena" }
|
la-arena = { version = "0.3.0", path = "../../lib/la-arena" }
|
||||||
once_cell = "1.17.0"
|
once_cell = "1.17.0"
|
||||||
rustc-hash = "1.1.0"
|
rustc-hash = "1.1.0"
|
||||||
smallvec = "1.10.0"
|
smallvec.workspace = true
|
||||||
tracing = "0.1.35"
|
tracing = "0.1.35"
|
||||||
|
|
||||||
rustc_abi = { version = "0.0.20221221", package = "hkalbasi-rustc-ap-rustc_abi", default-features = false }
|
rustc_abi = { version = "0.0.20221221", package = "hkalbasi-rustc-ap-rustc_abi", default-features = false }
|
||||||
|
@ -21,7 +21,7 @@ itertools = "0.10.5"
|
|||||||
hashbrown = { version = "0.12.1", features = [
|
hashbrown = { version = "0.12.1", features = [
|
||||||
"inline-more",
|
"inline-more",
|
||||||
], default-features = false }
|
], default-features = false }
|
||||||
smallvec = { version = "1.10.0", features = ["const_new"] }
|
smallvec.workspace = true
|
||||||
|
|
||||||
# local deps
|
# local deps
|
||||||
stdx.workspace = true
|
stdx.workspace = true
|
||||||
|
@ -16,7 +16,7 @@ cov-mark = "2.0.0-pre.1"
|
|||||||
itertools = "0.10.5"
|
itertools = "0.10.5"
|
||||||
arrayvec = "0.7.2"
|
arrayvec = "0.7.2"
|
||||||
bitflags = "1.3.2"
|
bitflags = "1.3.2"
|
||||||
smallvec = "1.10.0"
|
smallvec.workspace = true
|
||||||
ena = "0.14.0"
|
ena = "0.14.0"
|
||||||
tracing = "0.1.35"
|
tracing = "0.1.35"
|
||||||
rustc-hash = "1.1.0"
|
rustc-hash = "1.1.0"
|
||||||
|
@ -16,7 +16,7 @@ rustc-hash = "1.1.0"
|
|||||||
either = "1.7.0"
|
either = "1.7.0"
|
||||||
arrayvec = "0.7.2"
|
arrayvec = "0.7.2"
|
||||||
itertools = "0.10.5"
|
itertools = "0.10.5"
|
||||||
smallvec = "1.10.0"
|
smallvec.workspace = true
|
||||||
once_cell = "1.17.0"
|
once_cell = "1.17.0"
|
||||||
|
|
||||||
# local deps
|
# local deps
|
||||||
|
@ -16,7 +16,7 @@ cov-mark = "2.0.0-pre.1"
|
|||||||
|
|
||||||
itertools = "0.10.5"
|
itertools = "0.10.5"
|
||||||
either = "1.7.0"
|
either = "1.7.0"
|
||||||
smallvec = "1.10.0"
|
smallvec.workspace = true
|
||||||
|
|
||||||
# local deps
|
# local deps
|
||||||
stdx.workspace = true
|
stdx.workspace = true
|
||||||
|
@ -16,7 +16,7 @@ cov-mark = "2.0.0-pre.1"
|
|||||||
itertools = "0.10.5"
|
itertools = "0.10.5"
|
||||||
|
|
||||||
once_cell = "1.17.0"
|
once_cell = "1.17.0"
|
||||||
smallvec = "1.10.0"
|
smallvec.workspace = true
|
||||||
|
|
||||||
|
|
||||||
# local deps
|
# local deps
|
||||||
|
@ -22,7 +22,7 @@ pulldown-cmark-to-cmark = "10.0.4"
|
|||||||
pulldown-cmark = { version = "0.9.1", default-features = false }
|
pulldown-cmark = { version = "0.9.1", default-features = false }
|
||||||
url = "2.3.1"
|
url = "2.3.1"
|
||||||
dot = "0.1.4"
|
dot = "0.1.4"
|
||||||
smallvec = "1.10.0"
|
smallvec.workspace = true
|
||||||
|
|
||||||
# local deps
|
# local deps
|
||||||
cfg.workspace = true
|
cfg.workspace = true
|
||||||
|
@ -14,7 +14,7 @@ doctest = false
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
cov-mark = "2.0.0-pre.1"
|
cov-mark = "2.0.0-pre.1"
|
||||||
rustc-hash = "1.1.0"
|
rustc-hash = "1.1.0"
|
||||||
smallvec = "1.10.0"
|
smallvec.workspace = true
|
||||||
tracing = "0.1.35"
|
tracing = "0.1.35"
|
||||||
|
|
||||||
# local deps
|
# local deps
|
||||||
|
Loading…
Reference in New Issue
Block a user