forked from prefix-dev/pixi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
206 lines (199 loc) · 8.45 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
[package]
name = "pixi"
version = "0.20.0"
description = "A package management and workflow tool"
edition = "2021"
authors = ["pixi contributors <hi@prefix.dev>"]
homepage = "https://github.com/prefix-dev/pixi"
repository = "https://github.com/prefix-dev/pixi"
license = "BSD-3-Clause"
readme = "README.md"
[features]
default = ["native-tls"]
native-tls = [
"reqwest/native-tls",
"rattler_repodata_gateway/native-tls",
"rattler/native-tls",
]
rustls-tls = [
"reqwest/rustls-tls",
"reqwest/rustls-tls-native-roots",
"rattler_repodata_gateway/rustls-tls",
"rattler/rustls-tls",
]
slow_integration_tests = []
[dependencies]
assert_matches = "1.5.0"
async-once-cell = "0.5.3"
cfg-if = "1.0"
chrono = "0.4.38"
clap = { version = "4.5.4", default-features = false, features = [
"derive",
"usage",
"wrap_help",
"std",
"color",
"error-context",
"env",
] }
clap-verbosity-flag = "2.2.0"
clap_complete = "4.5.2"
console = { version = "0.15.8", features = ["windows-console-colors"] }
crossbeam-channel = "0.5.12"
deno_task_shell = "0.16.0"
dialoguer = "0.11.0"
dirs = "5.0.1"
distribution-filename = { git = "https://github.com/astral-sh/uv", tag = "0.1.32" }
distribution-types = { git = "https://github.com/astral-sh/uv", tag = "0.1.32" }
dunce = "1.0.4"
flate2 = "1.0.28"
futures = "0.3.30"
http-cache-reqwest = "0.14.0"
human_bytes = "0.4.3"
humantime = "2.1.0"
ignore = "0.4.22"
indexmap = { version = "2.2.6", features = ["serde"] }
indicatif = "0.17.8"
install-wheel-rs = { git = "https://github.com/astral-sh/uv", tag = "0.1.32" }
is_executable = "1.0.1"
itertools = "0.12.1"
lazy_static = "1.4.0"
miette = { version = "7.2.0", features = [
"fancy",
"supports-color",
"supports-hyperlinks",
"supports-unicode",
"terminal_size",
"textwrap",
] }
minijinja = { version = "1.0.20", features = ["builtins"] }
once_cell = "1.19.0"
pep440_rs = { git = "https://github.com/astral-sh/uv", tag = "0.1.32" }
pep508_rs = { git = "https://github.com/astral-sh/uv", tag = "0.1.32" }
platform-tags = { git = "https://github.com/astral-sh/uv", tag = "0.1.32" }
pypi-types = { git = "https://github.com/astral-sh/uv", tag = "0.1.32" }
pyproject-toml = "0.10.0"
rattler = { version = "0.23.0", default-features = false, features = [
"cli-tools",
] }
rattler_conda_types = { version = "0.22.0", default-features = false }
rattler_digest = { version = "0.19.3", default-features = false }
rattler_lock = { version = "0.22.3", default-features = false }
rattler_networking = { version = "0.20.2", default-features = false }
rattler_repodata_gateway = { version = "0.19.8", default-features = false, features = [
"sparse",
] }
rattler_shell = { version = "0.20.1", default-features = false, features = [
"sysinfo",
] }
rattler_solve = { version = "0.20.7", default-features = false, features = [
"resolvo",
] }
rattler_virtual_packages = { version = "0.19.8", default-features = false }
regex = "1.10.4"
requirements-txt = { git = "https://github.com/astral-sh/uv", tag = "0.1.32" }
reqwest = { version = "0.12.3", default-features = false }
reqwest-middleware = "0.3.0"
reqwest-retry = "0.5.0"
self-replace = "1.3.7"
serde = "1.0.198"
serde-untagged = "0.1.5"
serde_json = "1.0.116"
serde_with = { version = "3.7.0", features = ["indexmap"] }
serde_yaml = "0.9.34"
shlex = "1.3.0"
spdx = "0.10.4"
strsim = "0.11.1"
tabwriter = { version = "1.4.0", features = ["ansi_formatting"] }
tar = "0.4.40"
tempfile = "3.10.1"
thiserror = "1.0.58"
tokio = { version = "1.37.0", features = [
"macros",
"rt-multi-thread",
"signal",
] }
tokio-util = "0.7.10"
toml_edit = { version = "0.22.11", features = ["serde"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
url = "2.5.0"
uv-build = { git = "https://github.com/astral-sh/uv", tag = "0.1.32" }
uv-cache = { git = "https://github.com/astral-sh/uv", tag = "0.1.32" }
uv-client = { git = "https://github.com/astral-sh/uv", tag = "0.1.32" }
uv-configuration = { git = "https://github.com/astral-sh/uv", tag = "0.1.32" }
uv-dispatch = { git = "https://github.com/astral-sh/uv", tag = "0.1.32" }
uv-distribution = { git = "https://github.com/astral-sh/uv", tag = "0.1.32" }
uv-git = { git = "https://github.com/astral-sh/uv", tag = "0.1.32" }
uv-installer = { git = "https://github.com/astral-sh/uv", tag = "0.1.32" }
uv-interpreter = { git = "https://github.com/astral-sh/uv", tag = "0.1.32" }
uv-normalize = { git = "https://github.com/astral-sh/uv", tag = "0.1.32" }
uv-resolver = { git = "https://github.com/astral-sh/uv", tag = "0.1.32" }
uv-types = { git = "https://github.com/astral-sh/uv", tag = "0.1.32" }
xxhash-rust = "0.8.10"
zip = { version = "0.6.6", default-features = false, features = [
"deflate",
"time",
] }
[target.'cfg(unix)'.dependencies]
nix = { version = "0.28.0", default-features = false, features = [
"fs",
"signal",
"term",
"poll",
] }
libc = { version = "0.2.153", default-features = false }
signal-hook = "0.3.17"
[dev-dependencies]
insta = { version = "1.38.0", features = ["yaml", "glob"] }
rattler_digest = "0.19.3"
rstest = "0.19.0"
serde_json = "1.0.116"
serial_test = "3.0.0"
tokio = { version = "1.37.0", features = ["rt"] }
toml = "0.8.12"
[patch.crates-io]
# For pyproject-toml
# If you change this also change the versions in the the patch section for uv
pep440_rs = { git = "https://github.com/astral-sh/uv", tag = "0.1.32" }
pep508_rs = { git = "https://github.com/astral-sh/uv", tag = "0.1.32" }
# deno_task_shell = { path = "../deno_task_shell" }
# rattler = { git = "https://github.com/mamba-org/rattler", branch = "main" }
# rattler_conda_types = { git = "https://github.com/mamba-org/rattler", branch = "main" }
# rattler_digest = { git = "https://github.com/mamba-org/rattler", branch = "main" }
# rattler_lock = { git = "https://github.com/mamba-org/rattler", branch = "main" }
# rattler_networking = { git = "https://github.com/mamba-org/rattler", branch = "main" }
# rattler_repodata_gateway = { git = "https://github.com/mamba-org/rattler", branch = "main" }
# rattler_shell = { git = "https://github.com/mamba-org/rattler", branch = "main" }
# rattler_solve = { git = "https://github.com/mamba-org/rattler", branch = "main" }
# rattler_virtual_packages = { git = "https://github.com/mamba-org/rattler", branch = "main" }
# rattler_conda_types = { path = "../rattler/crates/rattler_conda_types" }
# rattler_digest = { path = "../rattler/crates/rattler_digest" }
# rattler_networking = { path = "../rattler/crates/rattler_networking" }
# rattler_repodata_gateway = { path = "../rattler/crates/rattler_repodata_gateway" }
# rattler_shell = { path = "../rattler/crates/rattler_shell" }
# rattler_solve = { path = "../rattler/crates/rattler_solve" }
# rattler_virtual_packages = { path = "../rattler/crates/rattler_virtual_packages" }
# rattler_lock = { path = "../rattler/crates/rattler_lock" }
# rattler_package_streaming = { path = "../rattler/crates/rattler_package_streaming" }
# rattler = { path = "../rattler/crates/rattler" }
# Change these lines if you want a patched version of uv
# [patch.'https://github.com/astral-sh/uv']
# pep440_rs = { git = "https://github.com/wolfv/uv", branch = "expose-yanks" }
# pep508_rs = { git = "https://github.com/wolfv/uv", branch = "expose-yanks" }
# uv-build = { git = "https://github.com/wolfv/uv", tag = "expose-yanks" }
# uv-cache = { git = "https://github.com/wolfv/uv", branch = "expose-yanks" }
# uv-client = { git = "https://github.com/wolfv/uv", branch = "expose-yanks" }
# uv-dispatch = { git = "https://github.com/wolfv/uv", branch = "expose-yanks" }
# uv-distribution = { git = "https://github.com/wolfv/uv", branch = "expose-yanks" }
# uv-installer = { git = "https://github.com/wolfv/uv", branch = "expose-yanks" }
# uv-interpreter = { git = "https://github.com/wolfv/uv", branch = "expose-yanks" }
# uv-normalize = { git = "https://github.com/wolfv/uv", branch = "expose-yanks" }
# uv-resolver = { git = "https://github.com/wolfv/uv", branch = "expose-yanks" }
# uv-types = { git = "https://github.com/wolfv/uv", branch = "expose-yanks" }
# distribution-filename = { git = "https://github.com/wolfv/uv", branch = "expose-yanks" }
# distribution-types = { git = "https://github.com/wolfv/uv", branch = "expose-yanks" }
# install-wheel-rs = { git = "https://github.com/wolfv/uv", branch = "expose-yanks" }
# platform-tags = { git = "https://github.com/wolfv/uv", branch = "expose-yanks" }
# pypi-types = { git = "https://github.com/wolfv/uv", branch = "expose-yanks" }
# requirements-txt = { git = "https://github.com/wolfv/uv", branch = "expose-yanks" }