-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
64 lines (61 loc) · 1.69 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
[package]
name = "pixi-pack"
description = "A command line tool to pack and unpack conda environments for easy sharing"
version = "0.2.2"
edition = "2021"
[features]
default = ["native-tls"]
native-tls = [
"reqwest/native-tls",
"reqwest/native-tls-alpn",
"rattler/native-tls",
"rattler_networking/rustls-tls",
"rattler_package_streaming/rustls-tls",
]
rustls-tls = [
"reqwest/rustls-tls",
"reqwest/rustls-tls-native-roots",
"rattler/rustls-tls",
"rattler_networking/rustls-tls",
"rattler_package_streaming/rustls-tls",
]
[dependencies]
anyhow = "1.*"
clap = { version = "4.5.20", features = ["derive", "string"] }
clap-verbosity-flag = "2.2.2"
futures = "0.3.31"
indicatif = "0.17.8"
rattler = { version = "0.28.0", default-features = false }
rattler_digest = "1.0.3"
rattler_conda_types = "0.29.0"
rattler_index = "0.19.34"
rattler_lock = "0.22.29"
rattler_networking = { version = "0.21.5", default-features = false }
rattler_package_streaming = { version = "0.22.11", default-features = false }
rattler_shell = "0.22.5"
reqwest = { version = "0.12.9", default-features = false, features = [
"http2",
"macos-system-configuration",
] }
reqwest-middleware = "0.3.3"
serde = { version = "1.0.214", features = ["derive"] }
serde_json = "1.0.132"
serde_yaml = "0.9.34"
tokio-tar = "0.3.1"
tokio = { version = "1.41.0", features = ["rt-multi-thread"] }
tokio-stream = { version = "0.1.16", features = ["fs"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = [
"default",
"env-filter",
] }
tracing-log = "0.2.0"
url = "2.5.3"
fxhash = "0.2.1"
tempfile = "3.13.0"
walkdir = "2.5.0"
fs-set-times = "0.20.1"
[dev-dependencies]
async-std = "1.13.0"
rstest = "0.23.0"
sha2 = "0.10.8"