millisecond 0.2.2

Format milliseconds into a human-readable format. It also, parse a milliseonds into its core parts, including years, days, hours, etc. This package has no-std dependency.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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 test
    cargo build --release

publish:
    just build
    cargo publish