[package]
edition = "2021"
name = "pounce-observability"
version = "0.3.0"
authors = ["John Kitchin <jkitchin@andrew.cmu.edu>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Observability for POUNCE (pounce#71): tracing subscriber install, tiger/rust themed text formatter, and the per-iteration collector layer that feeds the JSON solve report from the `pounce::iteration` event."
readme = "README.md"
keywords = [
"optimization",
"tracing",
"logging",
"ipopt",
"solver",
]
categories = [
"mathematics",
"development-tools::debugging",
]
license = "EPL-2.0"
repository = "https://github.com/jkitchin/pounce"
[lib]
name = "pounce_observability"
path = "src/lib.rs"
[dependencies.anstyle]
version = "1"
[dependencies.anstyle-query]
version = "1"
[dependencies.pounce-common]
version = "0.3.0"
[dependencies.pounce-nlp]
version = "0.3.0"
features = ["serde"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-log]
version = "0.2"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
"ansi",
"json",
]
[dev-dependencies.log]
version = "0.4"
[lints.clippy]
expect_used = "warn"
unwrap_used = "warn"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.rust]
unsafe_op_in_unsafe_fn = "warn"