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
|
Description: accept older release of crate url
Author: Jonas Smedegaard <dr@jones.dk>
Bug-Debian: https://bugs.debian.org/1093602
Forwarded: not-needed
Last-Update: 2025-01-20
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/helix-core/Cargo.toml
+++ b/helix-core/Cargo.toml
@@ -40,7 +40,7 @@
ahash = "0.8.11"
hashbrown = { version = "0.14.5", features = ["raw"] }
dunce = "1.0"
-url = "2.5.4"
+url = "2.5.2"
log = "0.4"
anyhow = "1.0"
--- a/helix-lsp-types/Cargo.toml
+++ b/helix-lsp-types/Cargo.toml
@@ -25,7 +25,7 @@
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.135"
serde_repr = "0.1"
-url = {version = "2.5.4", features = ["serde"]}
+url = {version = "2.5.2", features = ["serde"]}
[features]
default = []
--- a/helix-term/Cargo.toml
+++ b/helix-term/Cargo.toml
@@ -78,7 +78,7 @@
# opening URLs
open = "5.3.1"
-url = "2.5.4"
+url = "2.5.2"
# config
toml = "0.8"
--- a/helix-view/Cargo.toml
+++ b/helix-view/Cargo.toml
@@ -32,7 +32,7 @@
# Conversion traits
once_cell = "1.20"
-url = "2.5.4"
+url = "2.5.2"
arc-swap = { version = "1.7.1" }
|