[package]
edition = "2021"
rust-version = "1.82"
name = "dlt_log"
version = "1.0.0"
build = "build.rs"
exclude = ["doc/*.png"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Log crate adapter for integrating with the Diagnostic Log and Trace (DLT) system"
readme = "README.md"
keywords = [
"dlt",
"log",
"logging",
"adapter",
]
categories = ["development-tools::debugging"]
license = "MIT"
repository = "https://github.com/rusty-projects/dlt_log-rs"
[lib]
name = "dlt_log"
path = "src/lib.rs"
[[example]]
name = "simple"
path = "examples/simple.rs"
[[test]]
name = "init_double"
path = "tests/init_double.rs"
[[test]]
name = "init_empty_parameters"
path = "tests/init_empty_parameters.rs"
[[test]]
name = "init_nulerror"
path = "tests/init_nulerror.rs"
[[test]]
name = "init_ok"
path = "tests/init_ok.rs"
[[test]]
name = "log"
path = "tests/log.rs"
[[test]]
name = "log_nulerror"
path = "tests/log_nulerror.rs"
[dependencies.log]
version = "0.4"
features = ["std"]
[dev-dependencies.regex]
version = "1.12"
[build-dependencies.bindgen]
version = "0.72"