mirror of https://github.com/astral-sh/ruff
14 lines
553 B
TOML
14 lines
553 B
TOML
[alias]
|
|
dev = "run --package ruff_dev --bin ruff_dev"
|
|
benchmark = "bench -p ruff_benchmark --bench linter --bench formatter --"
|
|
|
|
# statically link the C runtime so the executable does not depend on
|
|
# that shared/dynamic library.
|
|
#
|
|
# See: https://github.com/astral-sh/ruff/issues/11503
|
|
[target.'cfg(all(target_env="msvc", target_os = "windows"))']
|
|
rustflags = ["-C", "target-feature=+crt-static"]
|
|
|
|
[target.'wasm32-unknown-unknown']
|
|
# See https://docs.rs/getrandom/latest/getrandom/#webassembly-support
|
|
rustflags = ["--cfg", 'getrandom_backend="wasm_js"'] |