prelude-xml-parser 0.9.1

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

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