Gaetan Lepage 2024-04-27 20:23:17 +02:00
parent 82a0b76d9c
commit 3bcf9c10ce
2 changed files with 31 additions and 21 deletions

View File

@ -127,6 +127,15 @@ version = "1.0.82"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f538837af36e6f6a9be0faa67f9a314f8119e4e4b5867c6ab40ed60360142519"
[[package]]
name = "arbitrary"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110"
dependencies = [
"derive_arbitrary",
]
[[package]]
name = "arc-swap"
version = "1.7.1"
@ -983,6 +992,17 @@ dependencies = [
"syn 1.0.109",
]
[[package]]
name = "derive_arbitrary"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611"
dependencies = [
"proc-macro2",
"quote",
"syn 2.0.58",
]
[[package]]
name = "diff"
version = "0.1.13"
@ -4398,7 +4418,7 @@ checksum = "a183cf7feeba97b4dd1c0d46788634f6221d87fa961b305bed08c851829efcc0"
[[package]]
name = "uv"
version = "0.1.36"
version = "0.1.39"
dependencies = [
"anstream",
"anyhow",
@ -4469,17 +4489,16 @@ dependencies = [
"anyhow",
"async-trait",
"base64 0.22.0",
"futures",
"http",
"insta",
"once-map",
"once_cell",
"reqwest",
"reqwest-middleware",
"rust-netrc",
"schemars",
"serde",
"tempfile",
"test-log",
"thiserror",
"tokio",
"tracing",
"url",
@ -4603,7 +4622,6 @@ dependencies = [
"serde",
"serde_json",
"uv-auth",
"uv-cache",
"uv-normalize",
]
@ -4613,7 +4631,6 @@ version = "0.0.1"
dependencies = [
"anstream",
"anyhow",
"chrono",
"clap",
"distribution-filename",
"distribution-types",
@ -4690,7 +4707,6 @@ dependencies = [
"fs-err",
"futures",
"install-wheel-rs",
"md-5",
"nanoid",
"once_cell",
"pep440_rs",
@ -4702,7 +4718,6 @@ dependencies = [
"rmp-serde",
"rustc-hash",
"serde",
"sha2",
"tempfile",
"thiserror",
"tokio",
@ -4798,7 +4813,6 @@ dependencies = [
"pypi-types",
"rayon",
"requirements-txt",
"rmp-serde",
"rustc-hash",
"serde",
"tempfile",
@ -4848,6 +4862,7 @@ dependencies = [
"uv-cache",
"uv-fs",
"uv-toolchain",
"uv-warnings",
"which",
"winapi",
]
@ -4959,7 +4974,6 @@ dependencies = [
"serde",
"tempfile",
"thiserror",
"tokio",
"tokio-util",
"tracing",
"url",
@ -4973,17 +4987,13 @@ name = "uv-types"
version = "0.0.1"
dependencies = [
"anyhow",
"clap",
"distribution-types",
"itertools 0.12.1",
"once-map",
"pep440_rs",
"pep508_rs",
"pypi-types",
"requirements-txt",
"rustc-hash",
"serde",
"serde_json",
"thiserror",
"url",
"uv-cache",
@ -4994,7 +5004,7 @@ dependencies = [
[[package]]
name = "uv-version"
version = "0.1.36"
version = "0.1.39"
[[package]]
name = "uv-virtualenv"
@ -5014,6 +5024,7 @@ dependencies = [
"uv-cache",
"uv-fs",
"uv-interpreter",
"uv-version",
]
[[package]]
@ -5034,13 +5045,11 @@ dependencies = [
"distribution-types",
"fs-err",
"install-wheel-rs",
"pep508_rs",
"schemars",
"serde",
"thiserror",
"toml",
"tracing",
"uv-auth",
"uv-configuration",
"uv-fs",
"uv-normalize",
@ -5640,10 +5649,11 @@ checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d"
[[package]]
name = "zip"
version = "0.6.6"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "760394e246e4c28189f19d488c058bf16f564016aefac5d32bb1f3b51d5e9261"
checksum = "f2655979068a1f8fa91cb9e8e5b9d3ee54d18e0ddc358f2f4a395afc0929a84b"
dependencies = [
"arbitrary",
"byteorder",
"crc32fast",
"crossbeam-utils",

View File

@ -12,13 +12,13 @@
rustPlatform.buildRustPackage rec {
pname = "uv";
version = "0.1.36";
version = "0.1.39";
src = fetchFromGitHub {
owner = "astral-sh";
repo = "uv";
rev = version;
hash = "sha256-ngKVc3RJzkkjIfeyRbPe2kzBSJH7T8wdyZo3DP9FwpU=";
hash = "sha256-o5KrguapmfihO8oAse+LjBH9MvSsUORyZRALxkU4+xA=";
};
cargoLock = {