dayjs 0.1.7

a date and time library for Rust, inspired by day.js
Documentation
#!/usr/bin/env just --justfile

release:
    cargo build --release

lint:
    cargo clippy --all --fix --allow-dirty --allow-staged

test:
    cargo test

fmt:
    cargo fmt --all
    prettier --write ./*.md

login:
    cargo login --registry crates-io

publish:
    cargo publish --registry crates-io