-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
56 lines (48 loc) · 2.15 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
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
edition = "2021"
[workspace.dependencies]
async-trait = "0.1.82"
chrono = "0.4.38"
clap = "4.5.20"
clap-verbosity-flag = "3.0.1"
fs-err = "3.0.0"
indexmap = "2.6.0"
itertools = "0.13.0"
log = "0.4.22"
miette = "7.4.0"
minijinja = "2.4.0"
parking_lot = "0.12.3"
reqwest = "0.12.5"
reqwest-middleware = "0.4.0"
serde = "1.0"
serde_yaml = "0.9.33"
tempfile = "3.10.1"
tokio = "1.37.0"
tracing-subscriber = "0.3.18"
url = "2.5.4"
jsonrpc-stdio-server = "18.0.0"
jsonrpc-http-server = "18.0.0"
jsonrpc-core = "18.0.0"
rattler-build = { git = "https://github.com/prefix-dev/rattler-build", branch = "main", default-features = false }
rattler_conda_types = { version = "0.29.1", default-features = false }
rattler_package_streaming = { version = "0.22.14", default-features = false }
rattler_virtual_packages = { version = "1.1.10", default-features = false }
rattler_lock = { version = "0.22.31", default-features = false }
pixi_build_types = { git = "https://github.com/prefix-dev/pixi", branch = "feature/pixi-build" }
pixi_consts = { git = "https://github.com/prefix-dev/pixi", branch = "feature/pixi-build" }
pixi_manifest = { git = "https://github.com/prefix-dev/pixi", branch = "feature/pixi-build" }
pixi_spec = { git = "https://github.com/prefix-dev/pixi", branch = "feature/pixi-build" }
[patch.crates-io]
rattler = { git = "https://github.com/conda/rattler", branch = "main"}
rattler_conda_types = { git = "https://github.com/conda/rattler", branch = "main"}
rattler_package_streaming = { git = "https://github.com/conda/rattler", branch = "main"}
rattler_virtual_packages = { git = "https://github.com/conda/rattler", branch = "main"}
rattler_lock = { git = "https://github.com/conda/rattler", branch = "main"}
rattler_cache = { git = "https://github.com/conda/rattler", branch = "main"}
rattler_solve = { git = "https://github.com/conda/rattler", branch = "main"}
rattler_repodata_gateway = { git = "https://github.com/conda/rattler", branch = "main"}
rattler_redaction = { git = "https://github.com/conda/rattler", branch = "main"}
rattler_networking = { git = "https://github.com/conda/rattler", branch = "main"}