[package]
edition = "2021"
rust-version = "1.88"
name = "hl7probe"
version = "0.2.1"
build = false
exclude = [
"docs/",
".github/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Inspect and validate HL7 v2 messages from the command line"
homepage = "https://github.com/sudhi001/hl7probe"
documentation = "https://github.com/sudhi001/hl7probe#readme"
readme = "README.md"
keywords = [
"hl7",
"healthcare",
"interoperability",
"cli",
"validator",
]
categories = [
"command-line-utilities",
"parser-implementations",
]
license = "MIT"
repository = "https://github.com/sudhi001/hl7probe"
[[bin]]
name = "hl7probe"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.clap]
version = "4"
features = [
"derive",
"wrap_help",
]
[dependencies.crossterm]
version = "0.28"
[dependencies.owo-colors]
version = "4"
[dependencies.ratatui]
version = "0.29"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dev-dependencies.serde_json]
version = "1"
[profile.release]
opt-level = 3
lto = true
strip = true