chore: checkpoint before Python removal

This commit is contained in:
2026-03-26 22:33:59 +00:00
parent 683cec9307
commit e568ddf82a
29972 changed files with 11269302 additions and 2 deletions

36
vendor/console/Makefile vendored Normal file
View File

@@ -0,0 +1,36 @@
all: test
check:
@cargo check --lib --all-features
build:
@cargo build --all-features
doc:
@cargo doc --all-features
test:
@echo "CARGO TESTS"
@cargo test
@cargo test --all-features
@cargo test --no-default-features
check-minver:
@echo "MINVER CHECK"
@cargo minimal-versions check --lib
@cargo minimal-versions check --lib --all-features
@cargo minimal-versions check --lib --no-default-features
format:
@rustup component add rustfmt 2> /dev/null
@cargo fmt --all
format-check:
@rustup component add rustfmt 2> /dev/null
@cargo fmt --all -- --check
lint:
@rustup component add clippy 2> /dev/null
@cargo clippy --examples --tests --all-features -- --deny warnings
.PHONY: all doc build check test format format-check lint check-minver msrv-lock