-
Notifications
You must be signed in to change notification settings - Fork 55
/
Cargo.toml
159 lines (154 loc) · 4.02 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
[workspace]
members = ["crates/*", "tools/*"]
resolver = "2"
# See: https://docs.rs/insta/latest/insta/#optional-faster-runs
[profile.dev.package.insta]
opt-level = 3
[workspace.package]
categories = ["development-tools"]
homepage = "https://github.com/conda/rattler"
repository = "https://github.com/conda/rattler"
license = "BSD-3-Clause"
edition = "2021"
readme = "README.md"
[workspace.metadata.release]
allow-branch = ["main"]
consolidate-commits = true
tag-prefix = ""
[profile.bench]
lto = true
[workspace.dependencies]
anyhow = "1.0.82"
archspec = "0.1.3"
assert_matches = "1.5.0"
async-compression = { version = "0.4.8", features = [
"gzip",
"tokio",
"bzip2",
"zstd",
] }
async-fd-lock = "0.2.0"
fs4 = "0.9.1"
async-trait = "0.1.80"
axum = { version = "0.7.5", default-features = false, features = [
"tokio",
"http1",
] }
base64 = "0.22.0"
bindgen = "0.69.4"
blake2 = "0.10.6"
bytes = "1.6.0"
bzip2 = "0.4.4"
cache_control = "0.2.0"
cfg-if = "1.0"
chrono = { version = "0.4.38", default-features = false, features = [
"std",
"serde",
"alloc",
] }
clap = { version = "4.5.4", features = ["derive"] }
cmake = "0.1.50"
console = { version = "0.15.8", features = ["windows-console-colors"] }
criterion = "0.5"
dashmap = "6.0.1"
difference = "2.0.0"
digest = "0.10.7"
dirs = "5.0.1"
dunce = "1.0.4"
enum_dispatch = "0.3.13"
fs-err = { version = "2.11.0", features = ["tokio"] }
fslock = "0.2.1"
futures = "0.3.30"
futures-util = "0.3.30"
fxhash = "0.2.1"
generic-array = "0.14.4"
getrandom = { version = "0.2.14", default-features = false }
glob = "0.3.1"
google-cloud-auth = { version = "0.13.2", default-features = false }
hex = "0.4.3"
hex-literal = "0.4.1"
http = "1.1"
http-cache-semantics = "2.1.0"
humansize = "2.1.3"
humantime = "2.1.0"
indexmap = "2.2.6"
indicatif = "0.17.8"
insta = { version = "1.38.0" }
itertools = "0.13.0"
json-patch = "2.0.0"
keyring = "3.1.0"
lazy-regex = "3.1.0"
lazy_static = "1.4.0"
libc = { version = "0.2" }
libloading = "0.8.3"
libz-sys = { version = "1.1.16", default-features = false }
md-5 = "0.10.6"
memchr = "2.7.2"
memmap2 = "0.9.4"
netrc-rs = "0.1.2"
nom = "7.1.3"
num_cpus = "1.16.0"
once_cell = "1.19.0"
ouroboros = "0.18.3"
parking_lot = "0.12.1"
pathdiff = "0.2.1"
pep440_rs = { version = "0.6.0" }
pep508_rs = { version = "0.6.0" }
percent-encoding = "2.3.1"
pin-project-lite = "0.2.14"
plist = "1"
purl = { version = "0.1.2", features = ["serde"] }
quote = "1.0.36"
rand = "0.8.5"
reflink-copy = "0.1.16"
regex = "1.10.4"
reqwest = { version = "0.12.3", default-features = false }
reqwest-middleware = "0.3.0"
reqwest-retry = "0.6.0"
resolvo = { version = "0.8.2" }
retry-policies = { version = "0.4.0", default-features = false }
rmp-serde = { version = "1.2.0" }
rstest = { version = "0.21.0" }
rstest_reuse = "0.7.0"
simd-json = { version = "0.14.0", features = ["serde_impl"] }
serde = { version = "1.0.198" }
serde_json = { version = "1.0.116" }
serde_repr = "0.1"
serde_with = "3.7.0"
serde_yaml = "0.9.34"
serde-untagged = "0.1.6"
sha2 = "0.10.8"
shlex = "1.3.0"
similar-asserts = "1.5.0"
smallvec = { version = "1.13.2", features = [
"serde",
"const_new",
"const_generics",
"union",
] }
strum = { version = "0.26.3", features = ["derive"] }
superslice = "1.0.0"
syn = "2.0.59"
sysinfo = "0.30.10"
tar = "0.4.40"
tempdir = "0.3.7"
tempfile = "3.10.1"
temp-env = "0.3.6"
test-log = "0.2.15"
thiserror = "1.0"
tokio = { version = "1.37.0", default-features = false }
tokio-stream = "0.1.15"
tokio-util = "0.7.10"
tower = { version = "0.4.13", default-features = false }
tower-http = { version = "0.5.2", default-features = false }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", default-features = false }
tracing-test = { version = "0.2.4" }
trybuild = { version = "1.0.91" }
typed-path = { version = "0.9.2" }
url = { version = "2.5.0" }
uuid = { version = "1.8.0", default-features = false }
walkdir = "2.5.0"
windows-sys = { version = "0.52.0", default-features = false }
zip = { version = "2.1.3", default-features = false }
zstd = { version = "0.13.1", default-features = false }