[package]
edition = "2024"
name = "wae-observability"
version = "0.0.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "WAE Observability - 可观测性服务抽象层,提供健康检查、指标、日志和追踪能力"
homepage = "https://github.com/oovm/wae/tree/main/backends/wae-observability"
documentation = "https://docs.rs/wae-observability"
readme = "README.md"
keywords = [
"observability",
"health",
"metrics",
"tracing",
"logging",
]
categories = [
"asynchronous",
"web-programming",
]
license = "MIT"
repository = "https://github.com/oovm/wae/tree/main/backends/wae-observability"
resolver = "2"
[features]
default = []
full = [
"health",
"metrics",
"json-log",
"otlp",
"profiling",
]
health = []
json-log = []
metrics = []
otlp = []
profiling = []
[lib]
name = "wae_observability"
path = "src/lib.rs"
[[test]]
name = "lib_tests"
path = "tests/lib_tests.rs"
[[test]]
name = "main"
path = "tests/main.rs"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.bytes]
version = "1.11.1"
[dependencies.chrono]
version = "0.4.44"
features = ["serde"]
[dependencies.futures-util]
version = "0.3.32"
[dependencies.hex]
version = "0.4.3"
[dependencies.http]
version = "1.4.0"
[dependencies.http-body-util]
version = "0.1.3"
[dependencies.hyper]
version = "1.8.1"
[dependencies.parking_lot]
version = "0.12.5"
[dependencies.pin-project-lite]
version = "0.2.17"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.149"
[dependencies.tokio]
version = "1.50.0"
features = ["full"]
[dependencies.tower]
version = "0.5.3"
[dependencies.tracing]
version = "0.1.44"
features = [
"std",
"attributes",
"log",
]
[dependencies.uuid]
version = "1.22.0"
features = [
"v4",
"v7",
"serde",
]
[dependencies.wae-request]
version = "0.0.2"
[dependencies.wae-types]
version = "0.0.2"