[package]
edition = "2024"
rust-version = "1.95"
name = "hl7-3"
version = "0.1.3"
authors = ["Joel Parker Henderson <joel@joelparkerhenderson.com>"]
build = false
include = [
"src/**/*",
"spec/**/*",
"tests/**/*",
"/LICENSE.md",
"/README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HL7 v3 for Rust: the Reference Information Model (RIM) backbone classes, the data types they're built from (identifiers, coded values, intervals, quantities, encapsulated data, explicit null), and the three-level message envelope (transport wrapper, control act wrapper, domain payload). A foundation, not a full implementation — see spec/index.md for exact scope."
readme = "README.md"
keywords = [
"hl7",
"healthcare",
"v3",
"rim",
"xml",
]
categories = [
"parser-implementations",
"encoding",
]
license = "MIT OR Apache-2.0 OR BSD-3-Clause OR GPL-2.0-only OR GPL-3.0-only"
repository = "https://github.com/hl7-rust/hl7-rust"
[features]
default = []
derive = ["dep:hl7-3-derive"]
[lib]
name = "hl7_3"
path = "src/lib.rs"
[dependencies.hl7-2-xml-lite-helper]
version = "0.1"
[dependencies.hl7-3-derive]
version = "0.1.0"
optional = true