prelude-xml-parser 0.11.0

Deserialize Prelude EDC native XML files into Rust stucts.
Documentation
all:
  just --justfile {{justfile()}} fmt
  just --justfile {{justfile()}} check
  just --justfile {{justfile()}} clippy
  just --justfile {{justfile()}} test

lint:
  just --justfile {{justfile()}} fmt
  just --justfile {{justfile()}} check
  just --justfile {{justfile()}} clippy

bench:
  cargo bench

bench-quick:
  cargo bench --bench parse_benchmark -- --quick

bench-smoke:
  cargo bench -- --test

clippy:
  cargo clippy --all-targets --all-features

check:
  cargo check --all-targets --all-features

fmt:
  cargo fmt --all

test:
  cargo insta test

test-review:
  cargo insta test --review