[package]
edition = "2024"
rust-version = "1.95"
name = "er7-redact"
version = "0.2.0"
authors = ["Joel Parker Henderson <joel@joelparkerhenderson.com>"]
build = false
include = [
"src/**/*",
"spec/**/*",
"docs/**/*",
"examples/**/*",
"samples/**/*",
"/LICENSE.md",
"/README.md",
"/index.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Redact patient detail from HL7 v2 messages in the ER7 pipe-hat encoding, without changing the shape of the message"
homepage = "https://er7-rust.github.io/er7-redact/"
readme = "README.md"
keywords = [
"hl7",
"er7",
"healthcare",
"redaction",
"phi",
]
categories = [
"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/er7-rust/er7-rust"
resolver = "2"
[lib]
name = "er7_redact"
path = "src/lib.rs"
[[bin]]
name = "er7-redact"
path = "src/main.rs"
[[example]]
name = "pseudonyms_and_linkage"
path = "examples/pseudonyms_and_linkage.rs"
[[example]]
name = "read_the_report"
path = "examples/read_the_report.rs"
[[example]]
name = "redact_a_message"
path = "examples/redact_a_message.rs"
[[example]]
name = "redact_absent_empty_null"
path = "examples/redact_absent_empty_null.rs"
[[example]]
name = "reject_by_default"
path = "examples/reject_by_default.rs"
[[example]]
name = "write_a_policy"
path = "examples/write_a_policy.rs"
[dependencies.er7]
version = "0"
[lints.clippy.pedantic]
level = "warn"
priority = -1