-
Notifications
You must be signed in to change notification settings - Fork 57
/
pixi.toml
48 lines (42 loc) · 1.13 KB
/
pixi.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
[project]
name = "rattler"
description = "Rust library to install conda environments"
authors = [
"Wolf Vollprecht <[email protected]>",
"Bas Zalmstra <[email protected]>",
"Tim de Jager <[email protected]>",
"Ruben Arts <[email protected]>",
]
channels = ["conda-forge"]
platforms = ["linux-64", "win-64", "osx-64", "osx-arm64"]
license = "BSD-3-Clause"
[tasks]
build = "cargo build"
fmt = "cargo fmt"
lint = "cargo clippy"
check = "cargo check"
test = "cargo test"
rattler = "cargo run --bin rattler --release --"
[dependencies]
cxx-compiler = "~=1.6.0"
openssl = "~=3.1"
make = "~=4.3"
pkg-config = "~=0.29.2"
rust = "~=1.80.0"
cmake = "~=3.26.4"
[target.linux-64.dependencies]
clang = ">=18.1.8,<19.0"
compilers = ">=1.6.0"
mold = ">=2.33.0,<3.0"
[target.linux-64.activation]
scripts = ["scripts/activate_linux.sh"]
[feature.lint.dependencies]
pre-commit = ">=3.7.1,<4"
pre-commit-hooks = ">=4.6.0,<5"
ruff = ">=0.4.8,<0.5"
typos = ">=1.23.1,<2"
[feature.lint.tasks]
pre-commit-install = "pre-commit install"
pre-commit-run = "pre-commit run"
[environments]
lint = { features = ["lint"], no-default-feature = true, solve-group = "default" }