Unverified Commit fa033211 authored by Mario Rodas's avatar Mario Rodas Committed by GitHub
Browse files

Merge pull request #289501 from GaetanLepage/uv

uv: 0.1.2 -> 0.1.3
parents 99b92cf3 c5ffeb25
Loading
Loading
Loading
Loading
+56 −8
Original line number Diff line number Diff line
@@ -864,6 +864,7 @@ dependencies = [
 "sha2",
 "thiserror",
 "url",
 "urlencoding",
 "uv-fs",
 "uv-git",
 "uv-normalize",
@@ -2761,6 +2762,7 @@ dependencies = [
 "url",
 "uv-fs",
 "uv-normalize",
 "uv-warnings",
]

[[package]]
@@ -2789,6 +2791,7 @@ dependencies = [
 "percent-encoding",
 "pin-project-lite",
 "rustls",
 "rustls-native-certs",
 "rustls-pemfile",
 "serde",
 "serde_json",
@@ -2804,7 +2807,6 @@ dependencies = [
 "wasm-bindgen-futures",
 "wasm-streams",
 "web-sys",
 "webpki-roots",
 "winreg",
]

@@ -3015,6 +3017,18 @@ dependencies = [
 "sct",
]

[[package]]
name = "rustls-native-certs"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00"
dependencies = [
 "openssl-probe",
 "rustls-pemfile",
 "schannel",
 "security-framework",
]

[[package]]
name = "rustls-pemfile"
version = "1.0.4"
@@ -3071,6 +3085,15 @@ dependencies = [
 "winapi-util",
]

[[package]]
name = "schannel"
version = "0.1.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
dependencies = [
 "windows-sys 0.52.0",
]

[[package]]
name = "scopeguard"
version = "1.2.0"
@@ -3113,6 +3136,29 @@ version = "4.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c107b6f4780854c8b126e228ea8869f4d7b71260f962fefb57b996b8959ba6b"

[[package]]
name = "security-framework"
version = "2.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de"
dependencies = [
 "bitflags 1.3.2",
 "core-foundation",
 "core-foundation-sys",
 "libc",
 "security-framework-sys",
]

[[package]]
name = "security-framework-sys"
version = "2.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a"
dependencies = [
 "core-foundation-sys",
 "libc",
]

[[package]]
name = "serde"
version = "1.0.196"
@@ -4009,6 +4055,12 @@ dependencies = [
 "serde",
]

[[package]]
name = "urlencoding"
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"

[[package]]
name = "usvg"
version = "0.29.0"
@@ -4062,7 +4114,7 @@ checksum = "f00cc9702ca12d3c81455259621e676d0f7251cec66a21e98fe2e9a37db93b2a"

[[package]]
name = "uv"
version = "0.1.2"
version = "0.1.3"
dependencies = [
 "anstream",
 "anyhow",
@@ -4216,6 +4268,7 @@ dependencies = [
 "tokio-util",
 "tracing",
 "url",
 "urlencoding",
 "uv-cache",
 "uv-fs",
 "uv-normalize",
@@ -4364,6 +4417,7 @@ dependencies = [
 "junction",
 "tempfile",
 "tracing",
 "urlencoding",
 "uv-warnings",
]

@@ -4729,12 +4783,6 @@ dependencies = [
 "wasm-bindgen",
]

[[package]]
name = "webpki-roots"
version = "0.25.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f20c57d8d7db6d3b86154206ae5d8fba62dd39573114de97c2cb0578251f8e1"

[[package]]
name = "weezl"
version = "0.1.8"
+2 −2
Original line number Diff line number Diff line
@@ -15,14 +15,14 @@

python3.pkgs.buildPythonApplication rec {
  pname = "uv";
  version = "0.1.2";
  version = "0.1.3";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "astral-sh";
    repo = "uv";
    rev = version;
    hash = "sha256-ZrXWipg3m5T3PiUF7IgAxtw1GGnzVZTZdodFwNCu054=";
    hash = "sha256-eOrmVI8Lc9ScWHst72xLayX0UHVij6h/jf2p8AXiIRE=";
  };

  cargoDeps = rustPlatform.importCargoLock {