-
-
Notifications
You must be signed in to change notification settings - Fork 81
Expand file tree
/
Copy pathpixi.toml
More file actions
58 lines (49 loc) · 1.65 KB
/
Copy pathpixi.toml
File metadata and controls
58 lines (49 loc) · 1.65 KB
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
[workspace]
name = "mun"
description = "Development environment for the Mun programming language"
channels = ["conda-forge"]
platforms = ["linux-64", "osx-64", "osx-arm64", "win-64"]
[dependencies]
llvmdev = "14.*"
lld = "14.*"
libffi = ">=3.4"
rust = "1.97.*"
cmake = ">=3.22"
ninja = ">=1.10"
zlib = ">=1.2.13"
mdbook = "0.5.4.*"
cargo-audit = "0.22.1.*"
cargo-llvm-cov = "0.8.7.*"
cargo-nextest = "0.9.143.*"
[feature.nightly]
channels = ["conda-forge/label/rust_dev", "conda-forge"]
channel-priority = "disabled"
[feature.nightly.dependencies]
rust = { version = "*", channel = "conda-forge/label/rust_dev" }
[feature.nightly.tasks]
format = "cargo fmt --all"
format-check = "cargo fmt --all -- --check"
gen-syntax = "cargo gen-syntax"
generated-check = "cargo test -p tools"
[environments]
nightly = { features = ["nightly"], no-default-feature = true }
[target.osx-64.dependencies]
macosx_deployment_target_osx-64 = "15.5.*"
compiler-rt = "14.*"
[target.osx-arm64.dependencies]
macosx_deployment_target_osx-arm64 = "15.5.*"
compiler-rt = "14.*"
[target.osx.activation.env]
DYLD_FALLBACK_LIBRARY_PATH = "$CONDA_PREFIX/lib"
LIBRARY_PATH = "$CONDA_PREFIX/lib/clang/14.0.6/lib/darwin"
[tasks]
build = "cargo build --workspace"
build-capi = "cargo build -p mun -p mun_runtime_capi"
build-release = "cargo build --workspace --release"
build-runtime = "cargo build -p mun_runtime"
audit = "cargo audit"
check = "cargo check --all-targets"
clippy = "cargo clippy --all-features"
doctest = "cargo test --doc --all-features"
test = "cargo test --workspace"
test-coverage = "cargo llvm-cov nextest --all-features --workspace --exclude tools --lcov --output-path lcov.info --profile ci"