[package]
edition = "2024"
name = "er7"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parse, query, edit, and write HL7 v2 messages in the ER7 pipe-hat encoding, with zero dependencies"
readme = "README.md"
keywords = [
"hl7",
"er7",
"healthcare",
"parser",
"pipe-delimited",
]
categories = [
"parser-implementations",
"encoding",
"command-line-utilities",
]
license = "MIT OR Apache-2.0 OR BSD-3-Clause OR GPL-2.0-only OR GPL-3.0-only"
repository = "https://github.com/joelparkerhenderson/er7-rust"
[lib]
name = "er7"
path = "src/lib.rs"
[[bin]]
name = "er7"
path = "src/main.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[dependencies]