universal-time 0.3.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 --features std

clippy:
    cargo clippy
    cargo clippy --features std

test:
    cargo test
    cargo test --features std

precommit: fmt check clippy test