[package]
edition = "2024"
rust-version = "1.91.1"
name = "wdl-diagnostics"
version = "0.1.2"
authors = ["The Sprocket project contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Utilities for reporting diagnostics in the wdl-* family of crates"
homepage = "https://sprocket.bio"
documentation = "https://docs.rs/wdl-diagnostics"
readme = false
license = "MIT OR Apache-2.0"
repository = "https://github.com/stjude-rust-labs/sprocket/tree/main/crates/wdl-diagnostics"
resolver = "2"
[features]
backtrace = ["dep:wdl-engine"]
[lib]
name = "wdl_diagnostics"
path = "src/lib.rs"
[dependencies.anyhow]
version = "1.0.100"
[dependencies.clap]
version = "4.5.57"
features = [
"derive",
"string",
]
[dependencies.codespan-reporting]
version = "0.13.1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.wdl-ast]
version = "0.23.0"
[dependencies.wdl-engine]
version = "0.14.0"
optional = true
[lints.clippy]
missing_docs_in_private_items = "warn"
new_without_default = "allow"
[lints.rust]
missing_docs = "warn"
nonstandard-style = "warn"
rust-2018-idioms = "warn"
rust-2021-compatibility = "warn"
rust-2024-compatibility = "warn"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(docker_tests_disabled)"]
[lints.rustdoc]
broken_intra_doc_links = "warn"