[package]
edition = "2021"
rust-version = "1.88"
name = "hl7probe"
version = "0.10.0"
build = false
exclude = [
"docs/",
".github/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Read and check HL7 v2 messages: a library and a command-line tool"
homepage = "https://github.com/sudhi001/hl7probe"
documentation = "https://docs.rs/hl7probe"
readme = "README.md"
keywords = [
"hl7",
"healthcare",
"interoperability",
"parser",
"validator",
]
categories = [
"command-line-utilities",
"parser-implementations",
]
license = "MIT"
repository = "https://github.com/sudhi001/hl7probe"
[lib]
name = "hl7probe"
path = "src/lib.rs"
[[bin]]
name = "hl7probe"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "robustness"
path = "tests/robustness.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"
[lints.clippy]
many_single_char_names = "allow"
missing_const_for_fn = "warn"
redundant_clone = "warn"
struct_excessive_bools = "allow"
too_many_lines = "allow"
unwrap_used = "warn"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
unsafe_code = "forbid"
unused_qualifications = "warn"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
panic = "abort"
strip = true