Auto merge of #16104 - lnicola:bump-line-index, r=lnicola

internal: Bump line-index

Let's try out that sweet SIMD code path!
This commit is contained in:
bors 2023-12-12 15:20:53 +00:00
commit 98a8053143
2 changed files with 5 additions and 5 deletions

8
Cargo.lock generated
View File

@ -684,7 +684,7 @@ dependencies = [
"indexmap", "indexmap",
"itertools", "itertools",
"limit", "limit",
"line-index 0.1.0-pre.1", "line-index 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
"memchr", "memchr",
"nohash-hasher", "nohash-hasher",
"once_cell", "once_cell",
@ -881,9 +881,7 @@ version = "0.0.0"
[[package]] [[package]]
name = "line-index" name = "line-index"
version = "0.1.0-pre.1" version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2cad96769710c1745e11d4f940a8ff36000ade4bbada4285b001cb8aa2f745ce"
dependencies = [ dependencies = [
"nohash-hasher", "nohash-hasher",
"text-size", "text-size",
@ -892,6 +890,8 @@ dependencies = [
[[package]] [[package]]
name = "line-index" name = "line-index"
version = "0.1.1" version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "67d61795376ae2683928c218fda7d7d7db136fd38c06b7552904667f0d55580a"
dependencies = [ dependencies = [
"nohash-hasher", "nohash-hasher",
"text-size", "text-size",

View File

@ -85,7 +85,7 @@ rustc-dependencies = { path = "./crates/rustc-dependencies", version = "0.0.0" }
proc-macro-test = { path = "./crates/proc-macro-test" } proc-macro-test = { path = "./crates/proc-macro-test" }
# In-tree crates that are published separately and follow semver. See lib/README.md # In-tree crates that are published separately and follow semver. See lib/README.md
line-index = { version = "0.1.0-pre.1" } line-index = { version = "0.1.1" }
la-arena = { version = "0.3.1" } la-arena = { version = "0.3.1" }
lsp-server = { version = "0.7.4" } lsp-server = { version = "0.7.4" }