Auto merge of #16043 - Veykril:dep-bump, r=Veykril

Bump and unlock some dependencies
This commit is contained in:
bors 2023-12-07 10:52:52 +00:00
commit 07d3128de2
6 changed files with 39 additions and 61 deletions

79
Cargo.lock generated
View File

@ -276,7 +276,7 @@ dependencies = [
"autocfg", "autocfg",
"cfg-if", "cfg-if",
"crossbeam-utils", "crossbeam-utils",
"memoffset 0.9.0", "memoffset",
"scopeguard", "scopeguard",
] ]
@ -301,12 +301,12 @@ dependencies = [
[[package]] [[package]]
name = "dashmap" name = "dashmap"
version = "5.4.0" version = "5.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc" checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
dependencies = [ dependencies = [
"cfg-if", "cfg-if",
"hashbrown 0.12.3", "hashbrown",
"lock_api", "lock_api",
"once_cell", "once_cell",
"parking_lot_core", "parking_lot_core",
@ -448,15 +448,9 @@ checksum = "b6c80984affa11d98d1b88b66ac8853f143217b399d3c74116778ff8fdb4ed2e"
[[package]] [[package]]
name = "hashbrown" name = "hashbrown"
version = "0.12.3" version = "0.14.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
[[package]]
name = "hashbrown"
version = "0.14.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f93e7192158dbcda357bdec5fb5788eebf8bbac027f3f33e719d29135ae84156"
[[package]] [[package]]
name = "heck" name = "heck"
@ -509,7 +503,7 @@ dependencies = [
"either", "either",
"expect-test", "expect-test",
"fst", "fst",
"hashbrown 0.12.3", "hashbrown",
"hir-expand", "hir-expand",
"indexmap", "indexmap",
"intern", "intern",
@ -539,7 +533,7 @@ dependencies = [
"cov-mark", "cov-mark",
"either", "either",
"expect-test", "expect-test",
"hashbrown 0.12.3", "hashbrown",
"intern", "intern",
"itertools", "itertools",
"la-arena 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)", "la-arena 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
@ -765,7 +759,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f"
dependencies = [ dependencies = [
"equivalent", "equivalent",
"hashbrown 0.14.2", "hashbrown",
] ]
[[package]] [[package]]
@ -793,7 +787,7 @@ name = "intern"
version = "0.0.0" version = "0.0.0"
dependencies = [ dependencies = [
"dashmap", "dashmap",
"hashbrown 0.12.3", "hashbrown",
"rustc-hash", "rustc-hash",
"triomphe", "triomphe",
] ]
@ -1003,15 +997,6 @@ dependencies = [
"libc", "libc",
] ]
[[package]]
name = "memoffset"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d61c719bcfbcf5d62b3a09efa6088de8c54bc0bfcd3ea7ae39fcc186108b8de1"
dependencies = [
"autocfg",
]
[[package]] [[package]]
name = "memoffset" name = "memoffset"
version = "0.9.0" version = "0.9.0"
@ -1062,11 +1047,11 @@ dependencies = [
[[package]] [[package]]
name = "miow" name = "miow"
version = "0.5.0" version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "52ffbca2f655e33c08be35d87278e5b18b89550a37dbd598c20db92f6a471123" checksum = "359f76430b20a79f9e20e115b3428614e654f04fab314482fc0fda0ebd3c6044"
dependencies = [ dependencies = [
"windows-sys 0.42.0", "windows-sys 0.48.0",
] ]
[[package]] [[package]]
@ -1178,15 +1163,15 @@ dependencies = [
[[package]] [[package]]
name = "parking_lot_core" name = "parking_lot_core"
version = "0.9.6" version = "0.9.9"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba1ef8814b5c993410bb3adfad7a5ed269563e4a2f90c41f5d85be7fb47133bf" checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
dependencies = [ dependencies = [
"cfg-if", "cfg-if",
"libc", "libc",
"redox_syscall 0.2.16", "redox_syscall 0.4.1",
"smallvec", "smallvec",
"windows-sys 0.42.0", "windows-targets",
] ]
[[package]] [[package]]
@ -1479,15 +1464,6 @@ dependencies = [
"crossbeam-utils", "crossbeam-utils",
] ]
[[package]]
name = "redox_syscall"
version = "0.2.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
dependencies = [
"bitflags 1.3.2",
]
[[package]] [[package]]
name = "redox_syscall" name = "redox_syscall"
version = "0.3.5" version = "0.3.5"
@ -1498,14 +1474,23 @@ dependencies = [
] ]
[[package]] [[package]]
name = "rowan" name = "redox_syscall"
version = "0.15.11" version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64449cfef9483a475ed56ae30e2da5ee96448789fb2aa240a04beb6a055078bf" checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
dependencies = [
"bitflags 1.3.2",
]
[[package]]
name = "rowan"
version = "0.15.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9672ea408d491b517a4dc370159ec6dd7cb5c5fd2f41b02883830339109ac76"
dependencies = [ dependencies = [
"countme", "countme",
"hashbrown 0.12.3", "hashbrown",
"memoffset 0.8.0", "memoffset",
"rustc-hash", "rustc-hash",
"text-size", "text-size",
] ]
@ -1533,12 +1518,10 @@ dependencies = [
"lsp-types", "lsp-types",
"mbe", "mbe",
"mimalloc", "mimalloc",
"mio",
"nohash-hasher", "nohash-hasher",
"num_cpus", "num_cpus",
"oorandom", "oorandom",
"parking_lot", "parking_lot",
"parking_lot_core",
"parser", "parser",
"proc-macro-api", "proc-macro-api",
"profile", "profile",

View File

@ -95,6 +95,9 @@ bitflags = "2.4.1"
cargo_metadata = "0.18.1" cargo_metadata = "0.18.1"
dissimilar = "1.0.7" dissimilar = "1.0.7"
either = "1.9.0" either = "1.9.0"
hashbrown = { version = "0.14", features = [
"inline-more",
], default-features = false }
indexmap = "2.1.0" indexmap = "2.1.0"
itertools = "0.12.0" itertools = "0.12.0"
libc = "0.2.150" libc = "0.2.150"
@ -121,7 +124,5 @@ tracing-subscriber = { version = "0.3.18", default-features = false, features =
triomphe = { version = "0.1.10", default-features = false, features = ["std"] } triomphe = { version = "0.1.10", default-features = false, features = ["std"] }
xshell = "0.2.5" xshell = "0.2.5"
# can't upgrade due to dashmap depending on 0.12.3 currently # We need to freeze the version of the crate, as the raw-api feature is considered unstable
hashbrown = { version = "0.12.3", features = [ dashmap = { version = "=5.5.3", features = ["raw-api"] }
"inline-more",
], default-features = false }

View File

@ -15,8 +15,7 @@ doctest = false
arrayvec = "0.7.2" arrayvec = "0.7.2"
bitflags.workspace = true bitflags.workspace = true
cov-mark = "2.0.0-pre.1" cov-mark = "2.0.0-pre.1"
# We need to freeze the version of the crate, as the raw-api feature is considered unstable dashmap.workspace = true
dashmap = { version = "=5.4.0", features = ["raw-api"] }
drop_bomb = "0.1.5" drop_bomb = "0.1.5"
either.workspace = true either.workspace = true
fst = { version = "0.4.7", default-features = false } fst = { version = "0.4.7", default-features = false }

View File

@ -14,7 +14,7 @@ doctest = false
[dependencies] [dependencies]
# We need to freeze the version of the crate, as the raw-api feature is considered unstable # We need to freeze the version of the crate, as the raw-api feature is considered unstable
dashmap = { version = "=5.4.0", features = ["raw-api"] } dashmap.workspace = true
hashbrown.workspace = true hashbrown.workspace = true
rustc-hash = "1.1.0" rustc-hash = "1.1.0"
triomphe.workspace = true triomphe.workspace = true

View File

@ -43,11 +43,6 @@ triomphe.workspace = true
nohash-hasher.workspace = true nohash-hasher.workspace = true
always-assert = "0.1.2" always-assert = "0.1.2"
# These 3 deps are not used by r-a directly, but we list them here to lock in their versions
# in our transitive deps to prevent them from pulling in windows-sys 0.45.0
mio = "=0.8.5"
parking_lot_core = "=0.9.6"
cfg.workspace = true cfg.workspace = true
flycheck.workspace = true flycheck.workspace = true
hir-def.workspace = true hir-def.workspace = true

View File

@ -21,7 +21,7 @@ itertools.workspace = true
# Think twice before adding anything here # Think twice before adding anything here
[target.'cfg(windows)'.dependencies] [target.'cfg(windows)'.dependencies]
miow = "0.5.0" miow = "0.6.0"
winapi = { version = "0.3.9", features = ["winerror"] } winapi = { version = "0.3.9", features = ["winerror"] }
[features] [features]