From a72a09e9af5e29c69021644e2f521561af21f552 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Sun, 25 Aug 2024 20:02:26 -0400 Subject: [PATCH] Use `tl` fork to support unquoted hrefs (#6622) ## Summary Closes https://github.com/astral-sh/uv/issues/6082. --- Cargo.lock | 3 +-- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 16754df989fa..e46c4318d935 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4049,8 +4049,7 @@ checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" [[package]] name = "tl" version = "0.7.8" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b130bd8a58c163224b44e217b4239ca7b927d82bf6cc2fea1fc561d15056e3f7" +source = "git+https://github.com/charliermarsh/tl.git?rev=6e25b2ee2513d75385101a8ff9f591ef51f314ec#6e25b2ee2513d75385101a8ff9f591ef51f314ec" [[package]] name = "tokio" diff --git a/Cargo.toml b/Cargo.toml index b17221a985ee..bf299e6a8e2c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -139,7 +139,7 @@ target-lexicon = { version = "0.12.14" } tempfile = { version = "3.9.0" } textwrap = { version = "0.16.1" } thiserror = { version = "1.0.56" } -tl = { version = "0.7.7" } +tl = { git = "https://github.com/charliermarsh/tl.git", rev = "6e25b2ee2513d75385101a8ff9f591ef51f314ec" } tokio = { version = "1.35.1", features = ["fs", "io-util", "macros", "process", "signal", "sync"] } tokio-stream = { version = "0.1.14" } tokio-tar = { version = "0.3.1" }