/
germanubis
/
clap
Обзор
Документация
Войти
/
germanubis
/
clap
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Makefile
43 строки
1 KB
renovate[bot]
chore(deps): Update Rust Stable to v1.91 (#6169)
31 окт 2025, 23:17
Не верифицирован
31 окт 2025, 23:17
8d14ff1
Код
Авторство
О чём код?
# CI Steps # # Considerations # - Easy to debug: show the command being run # - Leverage CI features: Only run individual steps so we can use features like reporting elapsed time per step ARGS?=--workspace TOOLCHAIN_TARGET ?= ifneq (${TOOLCHAIN_TARGET},) ARGS+=--target ${TOOLCHAIN_TARGET} endif STABLE?=1.91 _FEATURES = minimal default wasm full debug release _FEATURES_minimal = --no-default-features --features "std" _FEATURES_default = _FEATURES_wasm = --no-default-features --features "std help usage error-context suggestions" --features "deprecated derive cargo env unicode string" _FEATURES_full = --features "deprecated derive cargo env unicode string wrap_help unstable-ext" _FEATURES_next = ${_FEATURES_full} --features "unstable-v5 unstable-markdown" _FEATURES_debug = ${_FEATURES_full} --features debug --features clap_complete/debug _FEATURES_release = ${_FEATURES_full} --release check-wasm: cargo check ${_FEATURES_${@:check-%=%}} ${ARGS} check-%: cargo check ${_FEATURES_${@:check-%=%}} --all-targets ${ARGS} build-%: cargo test ${_FEATURES_${@:build-%=%}} --all-targets --no-run ${ARGS} test-%: cargo test ${_FEATURES_${@:test-%=%}} ${ARGS} clippy-%: cargo clippy ${_FEATURES_${@:clippy-%=%}} ${ARGS} --all-targets -- -D warnings -A deprecated test-ui-%: cargo +${STABLE} test --test derive_ui --features derive,unstable-derive-ui-tests ${_FEATURES_${@:test-ui-%=%}} doc: cargo doc --workspace --all-features --no-deps --document-private-items