[package]
edition = "2024"
rust-version = "1.97.1"
name = "minco-plugin-observability"
version = "0.1.1"
authors = ["Minco Contributors"]
build = false
include = [
"src/**",
"Cargo.toml",
"README.md",
"LICENSE-MIT",
"LICENSE-APACHE",
]
publish = ["crates-io"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Structured tracing and CloudWatch-compatible JSON logging plugin for Minco applications"
homepage = "https://github.com/xicv/minco"
documentation = "https://docs.rs/minco-plugin-observability"
readme = "README.md"
keywords = [
"minco",
"tracing",
"logging",
"plugin",
]
categories = [
"development-tools::debugging",
"web-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/xicv/minco"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "minco_plugin_observability"
path = "src/lib.rs"
[dependencies.minco-core]
version = "0.1.1"
[dependencies.semver]
version = "1.0"
features = ["serde"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.thiserror]
version = "2.0"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"json",
]
[lints.clippy]
future_not_send = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
option_if_let_else = "allow"
too_many_lines = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"
unused_must_use = "deny"