Merge pull request #294908 from marsam/update-uv

uv: 0.1.16 -> 0.1.17
This commit is contained in:
OTABI Tomoya 2024-03-11 17:47:30 +09:00 committed by GitHub
commit 238e2e601f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 19 additions and 16 deletions

View File

@ -915,6 +915,7 @@ version = "0.0.1"
dependencies = [
"anyhow",
"cache-key",
"chrono",
"data-encoding",
"distribution-filename",
"fs-err",
@ -972,6 +973,15 @@ dependencies = [
"cfg-if",
]
[[package]]
name = "encoding_rs_io"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1cc3c5651fb62ab8aa3103998dade57efdd028544bd300516baa31840c252a83"
dependencies = [
"encoding_rs",
]
[[package]]
name = "equivalent"
version = "1.0.1"
@ -2882,16 +2892,6 @@ dependencies = [
"thiserror",
]
[[package]]
name = "reqwest-netrc"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eca0c58cd4b2978f9697dea94302e772399f559cd175356eb631cb6daaa0b6db"
dependencies = [
"reqwest-middleware",
"rust-netrc",
]
[[package]]
name = "reqwest-retry"
version = "0.3.0"
@ -4179,13 +4179,14 @@ checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a"
[[package]]
name = "uv"
version = "0.1.16"
version = "0.1.17"
dependencies = [
"anstream",
"anyhow",
"assert_cmd",
"assert_fs",
"base64 0.21.7",
"byteorder",
"chrono",
"clap",
"clap_complete_command",
@ -4282,7 +4283,6 @@ dependencies = [
"tokio",
"toml",
"tracing",
"uv-extract",
"uv-fs",
"uv-interpreter",
"uv-traits",
@ -4318,6 +4318,7 @@ dependencies = [
"async-trait",
"async_http_range_reader",
"async_zip",
"base64 0.21.7",
"cache-key",
"chrono",
"distribution-filename",
@ -4335,10 +4336,10 @@ dependencies = [
"pypi-types",
"reqwest",
"reqwest-middleware",
"reqwest-netrc",
"reqwest-retry",
"rkyv",
"rmp-serde",
"rust-netrc",
"rustc-hash",
"serde",
"serde_json",
@ -4500,10 +4501,12 @@ name = "uv-fs"
version = "0.0.1"
dependencies = [
"dunce",
"encoding_rs_io",
"fs-err",
"fs2",
"junction",
"tempfile",
"tokio",
"tracing",
"urlencoding",
"uv-warnings",
@ -4688,7 +4691,7 @@ dependencies = [
[[package]]
name = "uv-version"
version = "0.1.16"
version = "0.1.17"
[[package]]
name = "uv-virtualenv"

View File

@ -10,13 +10,13 @@
rustPlatform.buildRustPackage rec {
pname = "uv";
version = "0.1.16";
version = "0.1.17";
src = fetchFromGitHub {
owner = "astral-sh";
repo = "uv";
rev = version;
hash = "sha256-CvaYXtgd8eqzPNoXukjPwaoT/QOlUVKYNzD8Db6on9Q=";
hash = "sha256-nXH/9/c2UeG7LOJo0ZnozdI9df5cmVwICvgi0kRjgMU=";
};
cargoLock = {