millisecond 0.15.10

Format milliseconds into a human-readable and relative timestamp formats. This package has no-std dependency.
Documentation
set windows-shell := ["powershell.exe", "-NoLogo", "-Command"]
set shell := ["bash", "-cu"]

test:
    cargo check
    cargo clippy --workspace --all-targets -- --deny warnings
    cargo fmt --all -- --emit=files
    cargo build
    cargo test --no-fail-fast

build:
    just setup
    just test
    cargo build --release

publish:
    just build
    just push
    cargo publish

push:
    git push origin master

setup:
    #install pre-commit hook
    cp scripts/hooks/pre-commit.sh .git/hooks/pre-commit