forked from prefix-dev/pixi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
116 lines (110 loc) · 5.29 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
[package]
name = "pixi"
version = "0.13.0"
description = "A package management and workflow tool"
edition = "2021"
authors = ["pixi contributors <[email protected]>"]
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", "rip/native-tls"]
rustls-tls = ["reqwest/rustls-tls", "reqwest/rustls-tls-native-roots", "rattler_repodata_gateway/rustls-tls", "rattler/rustls-tls", "rip/rustls-tls"]
slow_integration_tests = []
[dependencies]
assert_matches = "1.5.0"
async-once-cell = "0.5.3"
async-recursion = "1.0.5"
async-scoped = { version = "0.8.0", features = ["use-tokio"] }
chrono = "0.4.32"
clap = { version = "4.4.18", default-features = false, features = ["derive", "usage", "wrap_help", "std", "color", "error-context", "env"] }
clap-verbosity-flag = "2.1.2"
clap_complete = "4.4.9"
console = { version = "0.15.8", features = ["windows-console-colors"] }
deno_task_shell = "0.14.3"
dialoguer = "0.11.0"
dirs = "5.0.1"
dunce = "1.0.4"
flate2 = "1.0.28"
futures = "0.3.30"
human_bytes = "0.4.3"
indexmap = { version = "2.1.0", features = ["serde"] }
indicatif = "0.17.7"
insta = { version = "1.34.0", features = ["yaml"] }
is_executable = "1.0.1"
itertools = "0.12.0"
lazy_static = "1.4.0"
miette = { version = "5.10.0", features = ["fancy", "supports-color", "supports-hyperlinks", "supports-unicode", "terminal_size", "textwrap"] }
minijinja = { version = "1.0.12", features = ["builtins"] }
once_cell = "1.19.0"
pep440_rs = "0.3.12"
pep508_rs = { version = "0.2.3", features = ["modern"] }
rattler = { version = "0.17.0", default-features = false }
rattler_conda_types = { version = "0.17.0", default-features = false }
rattler_digest = { version = "0.17.0", default-features = false }
rattler_lock = { version = "0.17.0", default-features = false }
rattler_networking = { version = "0.17.0", default-features = false }
rattler_repodata_gateway = { version = "0.17.0", default-features = false, features = ["sparse"] }
rattler_shell = { version = "0.17.0", default-features = false, features = ["sysinfo"] }
rattler_solve = { version = "0.17.0", default-features = false, features = ["resolvo"] }
rattler_virtual_packages = { version = "0.17.0", default-features = false }
regex = "1.10.3"
reqwest = { version = "0.11.23", default-features = false }
reqwest-middleware = "0.2.4"
rip = { package = "rattler_installs_packages", version = "0.5.0", default-features = false }
self-replace = "1.3.7"
serde = "1.0.195"
serde-untagged = "0.1.5"
serde_json = "1.0.111"
serde_spanned = "0.6.5"
serde_with = { version = "3.5.0", features = ["indexmap"] }
shlex = "1.3.0"
spdx = "0.10.3"
strsim = "0.10.0"
tabwriter = { version = "1.4.0", features = ["ansi_formatting"] }
tar = "0.4.40"
tempfile = "3.9.0"
thiserror = "1.0.56"
tokio = { version = "1.35.1", features = ["macros", "rt-multi-thread", "signal"] }
tokio-util = "0.7.10"
toml_edit = { version = "0.21.0", features = ["serde"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
url = "2.5.0"
zip = { version = "0.6.6", default-features = false, features = ["deflate", "time"] }
[target.'cfg(unix)'.dependencies]
nix = { version = "0.27.1", default-features = false, features = ["fs", "signal", "term", "poll"] }
libc = { version = "0.2.152", default-features = false }
signal-hook = "0.3.17"
[dev-dependencies]
rattler_digest = "0.17.0"
rstest = "0.18.2"
serde_json = "1.0.111"
serial_test = "2.0.0"
tokio = { version = "1.35.1", features = ["rt"] }
toml = "0.8.8"
[patch.crates-io]
#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" }
#rip = { package = "rattler_installs_packages", git = "https://github.com/prefix-dev/rattler_installs_packages", branch = "main" }
#resolvo = { git = "https://github.com/mamba-org/resolvo.git", branch = "main" }
#deno_task_shell = { path = "../deno_task_shell" }
#rattler = { path = "../rattler/crates/rattler" }
#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" }
#rip = { package = "rattler_installs_packages", path = "../rip" }