mirror of
https://github.com/astral-sh/uv.git
synced 2025-07-07 13:25:00 +00:00

## Summary It turns out that the Git fetch implementation is initializing its own client, which can be really expensive on macOS (due to loading native certificates) _and_ bypasses any of our middleware. This PR modifies the Git implementation to accept a shared client.
28 lines
746 B
TOML
28 lines
746 B
TOML
[package]
|
|
name = "uv-git"
|
|
version = "0.0.1"
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
homepage = { workspace = true }
|
|
documentation = { workspace = true }
|
|
repository = { workspace = true }
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
cache-key = { workspace = true }
|
|
uv-fs = { workspace = true }
|
|
|
|
anyhow = { workspace = true }
|
|
cargo-util = { workspace = true }
|
|
dashmap = { workspace = true }
|
|
fs-err = { workspace = true, features = ["tokio"] }
|
|
reqwest = { workspace = true, features = ["blocking"] }
|
|
reqwest-middleware = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tracing = { workspace = true }
|
|
url = { workspace = true }
|