diff --git a/Cargo.toml b/Cargo.toml index 5fa3292b2..59d80aebd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,7 @@ uv-distribution = { path = "crates/uv-distribution" } uv-distribution-filename = { path = "crates/uv-distribution-filename" } uv-distribution-types = { path = "crates/uv-distribution-types" } uv-extract = { path = "crates/uv-extract" } -uv-fs = { path = "crates/uv-fs" } +uv-fs = { path = "crates/uv-fs", features = ["serde", "tokio"] } uv-git = { path = "crates/uv-git" } uv-globfilter = { path = "crates/uv-globfilter" } uv-install-wheel = { path = "crates/uv-install-wheel", default-features = false } @@ -72,7 +72,7 @@ uv-workspace = { path = "crates/uv-workspace" } anstream = { version = "0.6.15" } anyhow = { version = "1.0.89" } async-channel = { version = "2.3.1" } -async-compression = { version = "0.4.12" } +async-compression = { version = "0.4.12", features = ["bzip2", "gzip", "xz", "zstd"] } async-trait = { version = "0.1.82" } async_http_range_reader = { version = "0.9.1" } async_zip = { git = "https://github.com/charliermarsh/rs-async-zip", rev = "c909fda63fcafe4af496a07bfda28a5aae97e58d", features = ["deflate", "tokio"] } @@ -84,7 +84,7 @@ boxcar = { version = "0.2.5" } bytecheck = { version = "0.8.0" } cachedir = { version = "0.3.1" } cargo-util = { version = "0.2.14" } -clap = { version = "4.5.17" } +clap = { version = "4.5.17", features = ["derive", "env", "string", "wrap_help"] } clap_complete_command = { version = "0.6.1" } configparser = { version = "3.1.0" } console = { version = "0.15.8", default-features = false } @@ -98,7 +98,7 @@ either = { version = "1.13.0" } encoding_rs_io = { version = "0.1.7" } etcetera = { version = "0.8.0" } flate2 = { version = "1.0.33", default-features = false } -fs-err = { version = "3.0.0" } +fs-err = { version = "3.0.0", features = ["tokio"] } fs2 = { version = "0.4.3" } futures = { version = "0.3.30" } glob = { version = "0.3.1" } @@ -120,7 +120,7 @@ krata-tokio-tar = { version = "0.4.2" } mailparse = { version = "0.15.0" } md-5 = { version = "0.10.6" } memchr = { version = "2.7.4" } -miette = { version = "7.2.0" } +miette = { version = "7.2.0", features = ["fancy-no-backtrace"] } nanoid = { version = "0.4.0" } nix = { version = "0.29.0" } owo-colors = { version = "4.1.0" } @@ -136,7 +136,7 @@ rayon = { version = "1.10.0" } reflink-copy = { version = "0.1.19" } regex = { version = "1.10.6" } regex-automata = { version = "0.4.8", default-features = false, features = ["dfa-build", "dfa-search", "perf", "std", "syntax"] } -reqwest = { version = "0.12.7", default-features = false, features = ["json", "gzip", "stream", "rustls-tls", "rustls-tls-native-roots", "socks", "multipart", "http2"] } +reqwest = { version = "0.12.7", default-features = false, features = ["json", "gzip", "stream", "rustls-tls", "rustls-tls-native-roots", "socks", "multipart", "http2", "blocking"] } reqwest-middleware = { version = "0.4.0", features = ["multipart"] } reqwest-retry = { version = "0.7.0" } rkyv = { version = "0.8.8", features = ["bytecheck"] } @@ -148,7 +148,7 @@ same-file = { version = "1.0.6" } schemars = { version = "0.8.21", features = ["url"] } seahash = { version = "4.1.0" } self-replace = { version = "1.5.0" } -serde = { version = "1.0.210", features = ["derive"] } +serde = { version = "1.0.210", features = ["derive", "rc"] } serde-untagged = { version = "0.1.6" } serde_json = { version = "1.0.128" } sha2 = { version = "0.10.8" } @@ -164,7 +164,7 @@ thiserror = { version = "2.0.0" } tl = { git = "https://github.com/astral-sh/tl.git", rev = "6e25b2ee2513d75385101a8ff9f591ef51f314ec" } tokio = { version = "1.40.0", features = ["fs", "io-util", "macros", "process", "rt", "signal", "sync"] } tokio-stream = { version = "0.1.16" } -tokio-util = { version = "0.7.12", features = ["compat"] } +tokio-util = { version = "0.7.12", features = ["compat", "io"] } toml = { version = "0.8.19" } toml_edit = { version = "0.22.21", features = ["serde"] } tracing = { version = "0.1.40" } @@ -173,7 +173,7 @@ tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json", "re tracing-tree = { version = "0.4.0" } unicode-width = { version = "0.1.13" } unscanny = { version = "0.1.0" } -url = { version = "2.5.2" } +url = { version = "2.5.2", features = ["serde"] } urlencoding = { version = "2.1.3" } version-ranges = { git = "https://github.com/astral-sh/pubgrub", rev = "57afc831bf2551f164617a10383cf288bf5d190d" } walkdir = { version = "2.5.0" } diff --git a/crates/uv-build-backend/Cargo.toml b/crates/uv-build-backend/Cargo.toml index 2c1412e0a..9db37d39a 100644 --- a/crates/uv-build-backend/Cargo.toml +++ b/crates/uv-build-backend/Cargo.toml @@ -23,7 +23,7 @@ uv-pypi-types = { workspace = true } uv-warnings = { workspace = true } csv = { workspace = true } -flate2 = { workspace = true } +flate2 = { workspace = true, default-features = false } fs-err = { workspace = true } globset = { workspace = true } itertools = { workspace = true } diff --git a/crates/uv-distribution-types/Cargo.toml b/crates/uv-distribution-types/Cargo.toml index c3995f15f..4a501926b 100644 --- a/crates/uv-distribution-types/Cargo.toml +++ b/crates/uv-distribution-types/Cargo.toml @@ -24,7 +24,7 @@ uv-fs = { workspace = true } uv-git = { workspace = true } uv-normalize = { workspace = true } uv-pep440 = { workspace = true } -uv-pep508 = { workspace = true, features = ["serde"] } +uv-pep508 = { workspace = true } uv-platform-tags = { workspace = true } uv-pypi-types = { workspace = true } diff --git a/crates/uv-python/Cargo.toml b/crates/uv-python/Cargo.toml index 3b8384f6b..bc7e8a29c 100644 --- a/crates/uv-python/Cargo.toml +++ b/crates/uv-python/Cargo.toml @@ -39,7 +39,7 @@ clap = { workspace = true, optional = true } configparser = { workspace = true } fs-err = { workspace = true, features = ["tokio"] } futures = { workspace = true } -goblin = { workspace = true } +goblin = { workspace = true, default-features = false } itertools = { workspace = true } owo-colors = { workspace = true } regex = { workspace = true } diff --git a/crates/uv/Cargo.toml b/crates/uv/Cargo.toml index bf5d93a91..cfb64c421 100644 --- a/crates/uv/Cargo.toml +++ b/crates/uv/Cargo.toml @@ -106,7 +106,7 @@ base64 = { version = "0.22.1" } byteorder = { version = "1.5.0" } etcetera = { workspace = true } filetime = { version = "0.2.25" } -flate2 = { workspace = true } +flate2 = { workspace = true, default-features = false } ignore = { version = "0.4.23" } indoc = { version = "2.0.5" } insta = { version = "1.40.0", features = ["filters", "json"] }