[package] name = "nobug" version = "0.5.0" edition = "2021" authors = ["Christian Thäter "] description = "Assertions and active code annotations" documentation = "https://docs.rs/nobug" license = "MIT OR Apache-2.0" repository = "https://git.pipapo.org/cehteh/nobug_rs.git" keywords = ["assertions", "annotations", "debugging", "testing", "development-tools"] categories = ["development-tools::debugging", "development-tools::testing"] readme = "README.md" rust-version = "1.56.1" include = ["src/**/*", "LICENSE-*", "README.md"] [features] default = ["abort_on_fail", "const_expr"] abort_on_fail = [] const_expr = [] trace_nobug = [] [lints.rust] missing_docs = "warn" unknown_lints = "allow" [lints.clippy] pedantic = { level = "warn", priority = -1 } missing_const_for_fn = "warn" unwrap_used = "deny" dbg_macro = "forbid" [lints.rustdoc] missing_crate_level_docs = "warn" missing_doc_code_examples = "warn" [dependencies] cfg-if = "1.0.0"