summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
blob: a28d943a4f33666b052c509890771b677ab83ac4 (plain)
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
[package]
name = "pixi"
version = "0.3.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]
atty = "0.2"
chrono = "0.4.28"
clap = { version = "4.4.2", default-features = false, features = ["derive", "usage", "wrap_help", "std", "color", "error-context"] }
clap-verbosity-flag = "2.0.1"
clap_complete = "4.4.0"
console = { version = "0.15.7", features = ["windows-console-colors"] }
deno_task_shell = "0.13.2"
# deno_task_shell = { path = "../deno_task_shell" }
dirs = "5.0.1"
dunce = "1.0.4"
futures = "0.3.28"
indexmap = { version = "1.9.3", features = ["serde"] }
indicatif = "0.17.6"
insta = { version = "1.31.0", features = ["yaml"] }
is_executable = "1.0.1"
itertools = "0.11.0"
miette = { version = "5.10.0", features = ["fancy", "supports-color", "supports-hyperlinks", "supports-unicode", "terminal_size", "textwrap"] }
minijinja = { version = "1.0.7", features = ["builtins"] }
once_cell = "1.18.0"
rattler = { version = "0.8.0", default-features = false }
rattler_conda_types = { version = "0.8.0", default-features = false }
rattler_digest = { version = "0.8.0", default-features = false }
rattler_networking = { version = "0.8.0", default-features = false }
rattler_repodata_gateway = { version = "0.8.0", default-features = false, features = ["sparse"] }
rattler_shell = { version = "0.8.0", default-features = false, features = ["sysinfo"] }
rattler_solve = { version = "0.8.0", default-features = false, features = ["libsolv_rs"] }
rattler_virtual_packages = { version = "0.8.0", default-features = false }
reqwest = { version = "0.11.20", default-features = false }
serde = "1.0.188"
serde_json = "1.0.105"
serde_spanned = "0.6.3"
serde_with = { version = "3.3.0", features = ["indexmap"] }
spdx = "0.10.2"
strsim = "0.10.0"
tempfile = "3.8.0"
tokio = { version = "1.32.0", features = ["macros", "rt-multi-thread", "signal"] }
tokio-util = "0.7.8"
toml_edit = { version = "0.19.14", features = ["serde"] }
tracing = "0.1.37"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
url = "2.4.1"

[dev-dependencies]
rattler_digest = "0.8.0"
serde_json = "1.0.105"
tokio = { version = "1.32.0", features = ["rt"] }
toml = "0.7.6"

[patch.crates-io]
# Remove this once we created a new release of rattler (0.9.0).
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_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" }

# Remove this once https://github.com/idubrov/json-patch/pull/28 is merged and integrated into rattler.
json-patch = { git = "https://github.com/baszalmstra/json-patch", branch = "main" }