serde_context 0.1.0

Convenient contextful (de)serialization compatible with the serde ecosystem
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
check:
    cargo +nightly fmt
    cargo clippy -- -Wclippy::undocumented_unsafe_blocks
    just doc
    just test

doc *FLAGS:
    RUSTDOCFLAGS="--cfg docsrs -Z unstable-options --generate-link-to-definition" cargo +nightly doc {{FLAGS}}

test:
    cargo +nightly miri test
    for file in examples/*.rs; do cargo +nightly miri run --example "$(basename "$file" .rs)"; done