forked from unicode-org/icu4x
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.toml
More file actions
26 lines (20 loc) · 1.07 KB
/
Copy pathconfig.toml
File metadata and controls
26 lines (20 loc) · 1.07 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
# This file is part of ICU4X. For terms of use, please see the file
# called LICENSE at the top level of the ICU4X source tree
# (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ).
[alias]
quick = "make quick"
tidy = "make tidy"
# Run Clippy on all code paths
# Keep args in sync with `clippy` job in .github/workflows/build-test.yml
# unknown-clippy-lints: to allow us to work with nightly clippy lints that we don't CI
# field-reassign-with-default: https://github.com/rust-lang/rust-clippy/issues/6559 (fixed in nightly but not stable)
clippy-all = "clippy --all-features --all-targets -- -D warnings -Aclippy::field-reassign-with-default"
### WASM TASKS ###
# Re-build standard library with panic=abort.
wasm-build-dev = "build -Z build-std=std,panic_abort --target wasm32-unknown-unknown"
wasm-build-release = "build -Z build-std=std,panic_abort -Z build-std-features=panic_immediate_abort --target wasm32-unknown-unknown --release"
[target.wasm32-unknown-unknown]
rustflags = [
# 20 KiB heap size, to fit in 2 pages.
"-C", "link-args=-z stack-size=20480"
]