Update pyproject-toml to 0.9 (#9916)

This commit is contained in:
Micha Reiser 2024-02-09 21:38:34 +01:00 committed by GitHub
parent 52ebfc9718
commit 00ef01d035
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 21 deletions

28
Cargo.lock generated
View file

@ -1569,18 +1569,6 @@ version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9fa00462b37ead6d11a82c9d568b26682d78e0477dc02d1966c013af80969739" checksum = "9fa00462b37ead6d11a82c9d568b26682d78e0477dc02d1966c013af80969739"
[[package]]
name = "pep440_rs"
version = "0.3.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "887f66cc62717ea72caac4f1eb4e6f392224da3ffff3f40ec13ab427802746d6"
dependencies = [
"lazy_static",
"regex",
"serde",
"unicode-width",
]
[[package]] [[package]]
name = "pep440_rs" name = "pep440_rs"
version = "0.4.0" version = "0.4.0"
@ -1595,12 +1583,12 @@ dependencies = [
[[package]] [[package]]
name = "pep508_rs" name = "pep508_rs"
version = "0.2.1" version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0713d7bb861ca2b7d4c50a38e1f31a4b63a2e2df35ef1e5855cc29e108453e2" checksum = "910c513bea0f4f833122321c0f20e8c704e01de98692f6989c2ec21f43d88b1e"
dependencies = [ dependencies = [
"once_cell", "once_cell",
"pep440_rs 0.3.12", "pep440_rs",
"regex", "regex",
"serde", "serde",
"thiserror", "thiserror",
@ -1780,12 +1768,12 @@ dependencies = [
[[package]] [[package]]
name = "pyproject-toml" name = "pyproject-toml"
version = "0.8.2" version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef61ae096a2f8c8b49eca360679dbc25f57c99145f6634b6bc18fedb1f9c6c30" checksum = "95c3dd745f99aa3c554b7bb00859f7d18c2f1d6afd749ccc86d60b61e702abd9"
dependencies = [ dependencies = [
"indexmap", "indexmap",
"pep440_rs 0.4.0", "pep440_rs",
"pep508_rs", "pep508_rs",
"serde", "serde",
"toml", "toml",
@ -2189,7 +2177,7 @@ dependencies = [
"once_cell", "once_cell",
"path-absolutize", "path-absolutize",
"pathdiff", "pathdiff",
"pep440_rs 0.4.0", "pep440_rs",
"pretty_assertions", "pretty_assertions",
"pyproject-toml", "pyproject-toml",
"quick-junit", "quick-junit",
@ -2493,7 +2481,7 @@ dependencies = [
"log", "log",
"once_cell", "once_cell",
"path-absolutize", "path-absolutize",
"pep440_rs 0.4.0", "pep440_rs",
"regex", "regex",
"ruff_cache", "ruff_cache",
"ruff_formatter", "ruff_formatter",

View file

@ -65,7 +65,7 @@ pathdiff = { version = "0.2.1" }
pep440_rs = { version = "0.4.0", features = ["serde"] } pep440_rs = { version = "0.4.0", features = ["serde"] }
pretty_assertions = "1.3.0" pretty_assertions = "1.3.0"
proc-macro2 = { version = "1.0.78" } proc-macro2 = { version = "1.0.78" }
pyproject-toml = { version = "0.8.2" } pyproject-toml = { version = "0.9.0" }
quick-junit = { version = "0.3.5" } quick-junit = { version = "0.3.5" }
quote = { version = "1.0.23" } quote = { version = "1.0.23" }
rand = { version = "0.8.5" } rand = { version = "0.8.5" }