universal-time 0.2.0

Cross-platform time primitives with compile-time guarantees — no runtime panics!
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/env just --justfile

fmt:
    cargo +nightly fmt -- --config format_code_in_doc_comments=true

check:
    cargo check
    cargo check --no-default-features

clippy:
    cargo clippy
    cargo clippy --no-default-features

test:
    cargo test
    cargo test --no-default-features

precommit: fmt check clippy test