[package] name = "diagnostics_tools" version = "0.8.0" edition = "2021" authors = [ "Kostiantyn Wandalen ", "Dmytro Kryvoruchko ", ] license = "MIT" readme = "Readme.md" documentation = "https://docs.rs/diagnostics_tools" repository = "https://github.com/Wandalen/wTools/tree/master/module/core/diagnostics_tools" homepage = "https://github.com/Wandalen/wTools/tree/master/module/core/diagnostics_tools" description = """ Diagnostics tools. """ categories = [ "algorithms", "development-tools" ] keywords = [ "fundamental", "general-purpose" ] [lints] workspace = true [package.metadata.docs.rs] features = [ "full" ] all-features = false # exclude = [ "/tests", "/examples", "-*" ] [features] default = [ "enabled", "diagnostics_runtime_assertions", "diagnostics_compiletime_assertions", "diagnostics_memory_layout", ] full = [ "enabled", "diagnostics_runtime_assertions", "diagnostics_compiletime_assertions", "diagnostics_memory_layout", ] no_std = [] use_alloc = [ "no_std" ] enabled = [] diagnostics_runtime_assertions = [ "pretty_assertions" ] # run-time assertions diagnostics_compiletime_assertions = [] # compile-time assertions diagnostics_memory_layout = [] # [dependencies] pretty_assertions = { version = "~1.4.0", optional = true } [dev-dependencies] test_tools = { workspace = true }