-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathpixi.toml
38 lines (35 loc) · 1020 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
[project]
name = "rattler-build"
description = "Conda package builder, using the rattler rust backend"
authors = ["Wolf Vollprecht <[email protected]>"]
channels = ["conda-forge"]
platforms = ["linux-64", "win-64", "osx-64", "osx-arm64"]
[tasks]
build = "cargo build --release"
install = "cargo install --path . --locked"
end_to_end_test = "pytest test/end-to-end -v -s"
test = "cargo test"
lint = "pre-commit run --all"
build-docs = "mkdocs build --strict"
docs = "mkdocs serve"
deploy-latest = "mike deploy --push --update-aliases $RELEASE_VERSION latest"
deploy-dev = "mike deploy --push dev devel"
[dependencies]
openssl = "3.*"
rust = ">=1.76.0,<1.77"
pre-commit = "3.3.3.*"
compilers = "1.6.0.*"
libssh2 = "1.11.0.*"
pkg-config = "0.29.2.*"
cmake = "3.27.6.*"
make = "4.3.*"
perl = "5.32.1.*"
pytest = "7.4.2.*"
pyyaml = ">=6.0.1,<6.1"
conda-package-handling = "2.2.0.*"
# Documentation building
mkdocs = "1.5.3.*"
mkdocs-material = ">=9.5.16,<9.7"
pillow = ">=9.4.0"
cairosvg = "2.7.1.*"
mike = "2.0.0.*"