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
|
|
|
|
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
|
|
|
cache-key = { workspace = true }
|
2024-08-08 21:39:47 -04:00
|
|
|
distribution-filename = { workspace = true }
|
2024-03-20 21:16:02 +01:00
|
|
|
install-wheel-rs = { workspace = true }
|
|
|
|
|
pep440_rs = { workspace = true }
|
2024-05-07 18:13:09 +02:00
|
|
|
pep508_rs = { workspace = true }
|
2024-03-20 21:16:02 +01:00
|
|
|
platform-tags = { workspace = true }
|
|
|
|
|
pypi-types = { workspace = true }
|
|
|
|
|
uv-cache = { workspace = true }
|
2024-04-30 12:49:46 -05:00
|
|
|
uv-client = { workspace = true }
|
2024-08-08 21:39:47 -04:00
|
|
|
uv-configuration = { 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-05-26 23:54:49 -04:00
|
|
|
uv-state = { 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-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 }
|
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 }
|
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-07-18 17:00:01 +02:00
|
|
|
[target.'cfg(any(unix, target_os = "wasi", target_os = "redox"))'.dependencies]
|
|
|
|
|
rustix = { workspace = true }
|
|
|
|
|
|
2024-03-07 13:49:27 -08:00
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
2024-07-30 12:43:04 +03:00
|
|
|
windows-sys = { workspace = true }
|
2024-07-18 17:00:01 +02:00
|
|
|
winsafe = { workspace = true }
|
2023-12-04 11:03:43 +01:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-02-23 14:01:40 -06:00
|
|
|
anyhow = { version = "1.0.80" }
|
2024-05-21 15:37:23 -04:00
|
|
|
assert_fs = { version = "1.1.1" }
|
2023-12-04 11:03:43 +01:00
|
|
|
indoc = { version = "2.0.4" }
|
2024-05-20 00:49:42 +00:00
|
|
|
itertools = { version = "0.13.0" }
|
2024-05-21 15:37:23 -04:00
|
|
|
temp-env = { version = "0.3.6" }
|
2024-01-05 17:40:12 +01:00
|
|
|
tempfile = { version = "3.9.0" }
|
2024-05-21 15:37:23 -04:00
|
|
|
test-log = { version = "0.2.15", features = ["trace"], default-features = false }
|