human_bytes 0.4.1

Crate to convert bytes into human-readable values
Documentation
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