2023-10-05 15:09:22 -04:00
|
|
|
[package]
|
2024-07-03 08:44:29 -04:00
|
|
|
name = "uv-python"
|
2023-10-09 16:48:55 -04:00
|
|
|
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 }
|
2023-10-05 15:09:22 -04:00
|
|
|
|
2024-10-11 16:41:35 +02:00
|
|
|
[lib]
|
|
|
|
|
doctest = false
|
|
|
|
|
|
2023-11-22 15:10:27 +00:00
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
2023-10-05 15:09:22 -04:00
|
|
|
[dependencies]
|
2024-03-20 21:16:02 +01:00
|
|
|
uv-cache = { workspace = true }
|
2024-09-09 16:19:15 -04:00
|
|
|
uv-cache-info = { workspace = true }
|
2024-10-01 20:15:32 -04:00
|
|
|
uv-cache-key = { workspace = true }
|
2024-04-30 12:49:46 -05:00
|
|
|
uv-client = { workspace = true }
|
2024-10-30 09:13:20 -05:00
|
|
|
uv-dirs = { workspace = true }
|
2024-10-01 20:15:32 -04:00
|
|
|
uv-distribution-filename = { workspace = true }
|
2024-04-30 12:49:46 -05:00
|
|
|
uv-extract = { workspace = true }
|
2024-03-20 21:16:02 +01:00
|
|
|
uv-fs = { workspace = true }
|
2024-10-01 20:15:32 -04:00
|
|
|
uv-install-wheel = { workspace = true }
|
|
|
|
|
uv-pep440 = { workspace = true }
|
|
|
|
|
uv-pep508 = { workspace = true }
|
|
|
|
|
uv-platform-tags = { workspace = true }
|
|
|
|
|
uv-pypi-types = { workspace = true }
|
2024-05-26 23:54:49 -04:00
|
|
|
uv-state = { workspace = true }
|
2024-10-14 21:48:13 +00:00
|
|
|
uv-static = { workspace = true }
|
2024-10-31 10:58:35 -05:00
|
|
|
uv-trampoline-builder = { workspace = true }
|
2024-04-24 12:51:57 -05:00
|
|
|
uv-warnings = { workspace = true }
|
2023-10-05 20:59:58 -04:00
|
|
|
|
2024-04-30 12:49:46 -05:00
|
|
|
anyhow = { workspace = true }
|
2024-06-20 14:42:09 -04:00
|
|
|
clap = { workspace = true, optional = true }
|
2024-02-27 23:18:45 -05:00
|
|
|
configparser = { workspace = true }
|
2023-10-18 21:11:17 +02:00
|
|
|
fs-err = { workspace = true, features = ["tokio"] }
|
2024-04-30 12:49:46 -05:00
|
|
|
futures = { workspace = true }
|
2024-11-20 16:11:24 +01:00
|
|
|
goblin = { workspace = true, default-features = false }
|
2024-07-08 04:01:35 +08:00
|
|
|
itertools = { workspace = true }
|
2024-07-17 22:05:17 -04:00
|
|
|
owo-colors = { workspace = true }
|
2024-01-23 16:35:07 +01:00
|
|
|
regex = { workspace = true }
|
2024-04-30 12:49:46 -05:00
|
|
|
reqwest = { workspace = true }
|
|
|
|
|
reqwest-middleware = { workspace = true }
|
2024-11-20 09:42:42 -05:00
|
|
|
reqwest-retry = { workspace = true }
|
2023-12-16 22:01:35 +01:00
|
|
|
rmp-serde = { workspace = true }
|
2024-01-25 09:27:49 -08:00
|
|
|
same-file = { workspace = true }
|
2024-04-30 12:49:46 -05:00
|
|
|
schemars = { workspace = true, optional = true }
|
2023-12-16 22:01:35 +01:00
|
|
|
serde = { workspace = true, features = ["derive"] }
|
2023-10-06 15:49:41 -04:00
|
|
|
serde_json = { workspace = true }
|
2025-03-01 20:36:38 -05:00
|
|
|
sys-info = { workspace = true }
|
2024-06-12 10:11:56 -04:00
|
|
|
target-lexicon = { workspace = true }
|
2024-03-13 12:51:14 +01:00
|
|
|
tempfile = { workspace = true }
|
2023-10-25 22:11:36 +02:00
|
|
|
thiserror = { workspace = true }
|
2024-07-08 04:01:35 +08:00
|
|
|
tokio = { workspace = true }
|
2024-04-30 12:49:46 -05:00
|
|
|
tokio-util = { workspace = true, features = ["compat"] }
|
2023-10-06 15:49:41 -04:00
|
|
|
tracing = { workspace = true }
|
2024-04-30 12:49:46 -05:00
|
|
|
url = { workspace = true }
|
2024-03-13 12:51:14 +01:00
|
|
|
which = { workspace = true }
|
2024-03-07 13:49:27 -08:00
|
|
|
|
2024-10-30 00:46:21 +01:00
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
|
|
|
procfs = { workspace = true }
|
|
|
|
|
|
2024-03-07 13:49:27 -08:00
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
2024-08-29 22:48:22 +02:00
|
|
|
windows-registry = { workspace = true }
|
|
|
|
|
windows-result = { workspace = true }
|
2025-01-23 15:13:41 +01:00
|
|
|
windows-sys = { workspace = true }
|
2023-12-04 11:03:43 +01:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-09-17 06:39:58 -04:00
|
|
|
anyhow = { version = "1.0.89" }
|
|
|
|
|
assert_fs = { version = "1.1.2" }
|
2024-12-01 23:20:22 +01:00
|
|
|
indoc = { workspace = true }
|
2024-12-13 14:36:22 -05:00
|
|
|
insta = { version = "1.40.0" }
|
2025-01-05 21:27:14 -05:00
|
|
|
itertools = { version = "0.14.0" }
|
2024-05-21 15:37:23 -04:00
|
|
|
temp-env = { version = "0.3.6" }
|
2024-11-29 18:05:10 +01:00
|
|
|
tempfile = { workspace = true }
|
2024-09-17 06:39:58 -04:00
|
|
|
test-log = { version = "0.2.16", features = ["trace"], default-features = false }
|