r-ent 1.0.5

entropy measuring CLI tool
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
run:
    cargo run

test:
    cargo test

install:
    cargo install --path . --locked

install-opt:
    cargo install --path . --locked --config 'build.rustflags=["-C", "target-cpu=native"]'

# benches release build against currently installed
bench:
    cargo build --release
    hyperfine -N --warmup 3 "ent Cargo.lock" "target/release/ent Cargo.lock" "ent -w 4 Cargo.lock" "target/release/ent -w 4 Cargo.lock"