-
Notifications
You must be signed in to change notification settings - Fork 2
/
pixi.toml
40 lines (33 loc) · 884 Bytes
/
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
[project]
name = "pixi-pack"
channels = ["conda-forge"]
platforms = ["osx-arm64", "osx-64", "linux-64", "linux-aarch64", "win-64"]
[tasks]
build = "cargo build --release"
test = "cargo test"
[dependencies]
rust = "1.81.0"
openssl = "3.*"
pkg-config = "*"
[target.linux.dependencies]
compilers = ">=1.7.0"
[feature.test.dependencies]
conda = "*"
micromamba = "*"
[feature.demo.dependencies]
vhs = "*"
[feature.demo.tasks]
demo = "vhs .github/assets/demo/demo-light.tape && vhs .github/assets/demo/demo-dark.tape"
[feature.lint.dependencies]
pre-commit = "*"
prettier = "*"
taplo = "*"
pre-commit-hooks = "*"
typos = "*"
[feature.lint.tasks]
pre-commit-install = "pre-commit install"
pre-commit-run = "pre-commit run -a"
[environments]
default = ["lint", "test"]
demo = { features = ["demo"], no-default-feature = true }
lint = { features = ["lint"], no-default-feature = true }