about summary refs log tree commit diff
path: root/Cargo.lock
diff options
context:
space:
mode:
authornixxo <nixxo@protonmail.com>2025-09-04 09:33:11 +0200
committerEric Huss <eric@huss.org>2025-09-08 11:08:40 -0700
commit8b58777968a4c663d6c1293bacff6da99e6e5203 (patch)
tree3ce5d4b8957ba97868e330f40e8dfe4df03a89f0 /Cargo.lock
parent033c0a4742794f5608b19eb78458726596f8ec18 (diff)
downloadrust-8b58777968a4c663d6c1293bacff6da99e6e5203.tar.gz
rust-8b58777968a4c663d6c1293bacff6da99e6e5203.zip
fix partial urlencoded link support
- added full urlencoding to properly check urlencoded anchor links against non-urlencoded heading IDs
- added tests

urlecoding provided by https://crates.io/crates/urlencoding
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock7
1 files changed, 7 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 52f50481157..fd4b661c40d 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2167,6 +2167,7 @@ version = "0.1.0"
 dependencies = [
  "html5ever",
  "regex",
+ "urlencoding",
 ]
 
 [[package]]
@@ -5826,6 +5827,12 @@ dependencies = [
 ]
 
 [[package]]
+name = "urlencoding"
+version = "2.1.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
+
+[[package]]
 name = "utf-8"
 version = "0.7.6"
 source = "registry+https://github.com/rust-lang/crates.io-index"