er7 0.1.2

Parse, query, edit, and write HL7 v2 messages in the ER7 pipe-hat encoding, with zero dependencies
Documentation
[package]
name = "er7"
version = "0.1.2"
edition = "2024"
rust-version = "1.95"
authors = ["Joel Parker Henderson <joel@joelparkerhenderson.com>"]
description = "Parse, query, edit, and write HL7 v2 messages in the ER7 pipe-hat encoding, with zero dependencies"
license = "MIT OR Apache-2.0 OR BSD-3-Clause OR GPL-2.0-only OR GPL-3.0-only"
repository = "https://github.com/er7-rust/er7-rust"
readme = "README.md"
keywords = ["hl7", "er7", "healthcare", "parser", "pipe-delimited"]
categories = ["parser-implementations", "encoding", "command-line-utilities"]
# Leading slashes anchor to the package root; without them these patterns
# would also match the per-directory README.md and index.md files.
include = [
    "src/**/*",
    "spec/**/*",
    "examples/**/*",
    "samples/**/*",
    "/LICENSE.md",
    "/README.md",
    "/index.md",
]

# This table is empty on purpose, and stays empty: see
# spec/15-dependencies-and-build.md §15.1, rule R25. Healthcare integration
# code gets audited, this crate is meant to sit at the bottom of a stack of
# HL7 crates, and nothing in ER7 needs a dependency.
[dependencies]

# Pedantic lints are on, and the four checks run clippy with `-D warnings`,
# so a pedantic finding fails the build like any other. See
# spec/15-dependencies-and-build.md §15.7.
[lints.clippy]
pedantic = { level = "warn", priority = -1 }

[[bin]]
name = "er7"
path = "src/main.rs"