File: justfile

package info (click to toggle)
rust-human-bytes 0.4.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 112 kB
  • sloc: makefile: 4
file content (15 lines) | stat: -rw-r--r-- 337 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
all: test lint build-binary

test:
	cargo test
	cargo test --features fast
	cargo test --no-default-features
	cargo test --no-default-features --features fast

lint:
	cargo clippy
	cargo clippy --features fast
	cargo clippy --bin hb --features "build-binary"

build-binary:
	cargo build --release --features 'build-binary fast' --bin hb