From f47d9cd2d1e372391f8a8938de37de67c27fc156 Mon Sep 17 00:00:00 2001 From: Chris Pryer <14341145+cnpryer@users.noreply.github.com> Date: Thu, 8 Feb 2024 22:01:34 -0500 Subject: [PATCH] Use pep508_rs v0.3.0 (#887) --- Cargo.lock | 23 +++++++++++++++++++---- Cargo.toml | 2 +- 2 files changed, 20 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 51eaa910..07071fe4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -559,7 +559,7 @@ dependencies = [ "human-panic", "insta-cmd", "openssl", - "pep508_rs", + "pep508_rs 0.3.0", "tempfile", "termcolor", "thiserror", @@ -591,7 +591,7 @@ dependencies = [ "indexmap 2.1.0", "lazy_static", "pep440_rs 0.4.0", - "pep508_rs", + "pep508_rs 0.3.0", "pyproject-toml", "regex", "serde", @@ -608,7 +608,7 @@ dependencies = [ name = "huak-pyproject-toml" version = "0.0.0" dependencies = [ - "pep508_rs", + "pep508_rs 0.3.0", "tempfile", "thiserror", "toml_edit 0.21.0", @@ -1051,6 +1051,21 @@ dependencies = [ "url", ] +[[package]] +name = "pep508_rs" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "910c513bea0f4f833122321c0f20e8c704e01de98692f6989c2ec21f43d88b1e" +dependencies = [ + "once_cell", + "pep440_rs 0.4.0", + "regex", + "thiserror", + "tracing", + "unicode-width", + "url", +] + [[package]] name = "percent-encoding" version = "2.3.1" @@ -1092,7 +1107,7 @@ checksum = "569e259cd132eb8cec5df8b672d187c5260f82ad352156b5da9549d4472e64b0" dependencies = [ "indexmap 2.1.0", "pep440_rs 0.3.12", - "pep508_rs", + "pep508_rs 0.2.4", "serde", "toml 0.7.8", ] diff --git a/Cargo.toml b/Cargo.toml index 1579c40a..7eaf7a84 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ hex = "0.4.3" human-panic = "1.1.5" lazy_static = "1.4.0" pep440_rs = "0.4.0" -pep508_rs = "0.2.4" +pep508_rs = "0.3.0" regex = "1.10.2" sha2 = "0.10.8" tempfile = "3.7.1"