about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-12-12 15:02:52 +0000
committerbors <bors@rust-lang.org>2023-12-12 15:02:52 +0000
commit785bccb184892b8717992b4b9f3cb6977c4d5a7a (patch)
tree6e77e703c556d461d0bb96bc585461ec90cee0d4
parentdd42c1457dfd24f90a11947b01a1273343854622 (diff)
parentc30fd42685bf515b282f431e67d427649cbf9ae6 (diff)
Auto merge of #16102 - lnicola:publish-libs, r=lnicola
Publish `line-index`
-rw-r--r--Cargo.lock2
-rw-r--r--lib/line-index/Cargo.toml2
2 files changed, 2 insertions, 2 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 46efbdd93c9..87401d8b3df 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -891,7 +891,7 @@ dependencies = [
 
 [[package]]
 name = "line-index"
-version = "0.1.0"
+version = "0.1.1"
 dependencies = [
  "nohash-hasher",
  "text-size",
diff --git a/lib/line-index/Cargo.toml b/lib/line-index/Cargo.toml
index b7b4a01818e..494a7fa979a 100644
--- a/lib/line-index/Cargo.toml
+++ b/lib/line-index/Cargo.toml
@@ -1,6 +1,6 @@
 [package]
 name = "line-index"
-version = "0.1.0"
+version = "0.1.1"
 description = "Maps flat `TextSize` offsets to/from `(line, column)` representation."
 license = "MIT OR Apache-2.0"
 repository = "https://github.com/rust-lang/rust-analyzer/tree/master/lib/line-index"