person_struct_parser 1.2.5

Rust parser for person struct
Documentation
.PHONY: all run test format lint


all: run


run:
    cargo run


test:
    cargo test


format:
    cargo fmt


lint:
    cargo clippy



clean:
    cargo clean


check:
    cargo check