Sha256: acc4e8dc69b0fae078515c01c3f4353afe18f54a616ec7e6e20ddc893cd97e59
Contents?: true
Size: 518 Bytes
Versions: 32
Compression:
Stored size: 518 Bytes
Contents
all: style lint test .PHONY: all check: style lint .PHONY: check build: @cargo build .PHONY: build doc: @cargo doc .PHONY: doc test: @cargo test .PHONY: test style: @rustup component add rustfmt --toolchain stable 2> /dev/null cargo +stable fmt -- --check .PHONY: style format: @rustup component add rustfmt --toolchain stable 2> /dev/null @cargo +stable fmt .PHONY: format lint: @rustup component add clippy --toolchain stable 2> /dev/null @cargo +stable clippy --tests -- -D clippy::all .PHONY: lint
Version data entries
32 entries across 32 versions & 1 rubygems