1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
From: Matthias Geiger <werdahias@debian.org>
Date: Mon, 23 Jun 2025 08:30:24 +0200
Subject: Relax dependencies to build with Debian crates
Forwarded: not-needed
---
Cargo.toml | 8 ++++----
crates/texlab/Cargo.toml | 2 +-
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml
index 170a1e0..6a7f023 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -16,7 +16,7 @@ rust-version = "1.80"
anyhow = "1.0.98"
criterion = "0.5.1"
crossbeam-channel = "0.5.15"
-dirs = "6.0.0"
+dirs = "5.0.0"
expect-test = "1.5.1"
itertools = "0.13.0"
log = "0.4.27"
@@ -24,13 +24,13 @@ notify = "8.0.0"
notify-debouncer-full = "0.5.0"
once_cell = "1.21.3"
regex = "1.11.1"
-rowan = "0.15.16"
-rustc-hash = "2.1.1"
+rowan = "0.16"
+rustc-hash = "1.1"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
shellexpand = "3.1.1"
tempfile = "3.19.1"
-titlecase = "3.6.0"
+titlecase = "2.2.1"
unicode-normalization = "0.1.24"
url = "2.5.4"
diff --git a/crates/texlab/Cargo.toml b/crates/texlab/Cargo.toml
index c8233fc..c4882ac 100644
--- a/crates/texlab/Cargo.toml
+++ b/crates/texlab/Cargo.toml
@@ -44,7 +44,7 @@ line-index = { path = "../line-index" }
links = { path = "../links" }
log.workspace = true
lsp-server = "0.7.8"
-lsp-types = "0.95.1"
+lsp-types = "0.97.0"
notify-debouncer-full.workspace = true
notify.workspace = true
parking_lot = "0.12.4"
|