-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
65 lines (62 loc) · 1.7 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
[package]
name = "pixi-pack"
description = "A command line tool to pack and unpack conda environments for easy sharing"
version = "0.3.1"
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.0.93"
clap = { version = "4.5.21", features = ["derive", "string"] }
clap-verbosity-flag = "3.0.1"
futures = "0.3.31"
indicatif = "0.17.9"
rattler = { version = "0.28.4", default-features = false }
rattler_digest = "1.0.3"
rattler_conda_types = "0.29.3"
rattler_index = "0.19.37"
rattler_lock = "0.22.32"
rattler_networking = { version = "0.21.7", default-features = false }
rattler_package_streaming = { version = "0.22.15", default-features = false }
rattler_shell = "0.22.8"
reqwest = { version = "0.12.9", default-features = false, features = [
"http2",
"macos-system-configuration",
] }
reqwest-middleware = "0.4.0"
serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.133"
serde_yaml = "0.9.34"
tokio-tar = "0.3.1"
tokio = { version = "1.41.1", features = ["rt-multi-thread"] }
tokio-stream = { version = "0.1.16", features = ["fs"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = [
"default",
"env-filter",
] }
tracing-log = "0.2.0"
url = "2.5.4"
fxhash = "0.2.1"
tempfile = "3.14.0"
walkdir = "2.5.0"
base64 = "0.22.1"
[dev-dependencies]
async-std = "1.13.0"
rstest = "0.23.0"
sha2 = "0.10.8"
insta = "1.41.1"