embeddenator-obs 0.21.0

Observability: metrics, logging, and tracing for Embeddenator
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "embeddenator-obs"
version = "0.21.0"
authors = ["Tyler Zervas <tz-dev@vectorweight.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Observability: metrics, logging, and tracing for Embeddenator"
documentation = "https://docs.rs/embeddenator-obs"
readme = "README.md"
keywords = [
    "embeddenator",
    "observability",
    "metrics",
    "logging",
]
categories = [
    "development-tools::profiling",
    "development-tools::debugging",
]
license = "MIT"
repository = "https://github.com/tzervas/embeddenator-obs"

[features]
advanced-stats = ["telemetry"]
default = ["metrics"]
full = [
    "metrics",
    "tracing",
    "logging",
    "telemetry",
    "prometheus",
    "opentelemetry",
    "streaming",
    "advanced-stats",
]
logging = ["tracing"]
metrics = []
opentelemetry = ["telemetry"]
prometheus = ["telemetry"]
streaming = ["metrics"]
telemetry = [
    "metrics",
    "tracing",
]
tracing = [
    "dep:tracing",
    "dep:tracing-subscriber",
]

[lib]
name = "embeddenator_obs"
path = "src/lib.rs"

[[example]]
name = "advanced_features"
path = "examples/advanced_features.rs"

[[example]]
name = "performance_benchmark"
path = "examples/performance_benchmark.rs"

[[test]]
name = "integration_test"
path = "tests/integration_test.rs"

[dependencies.serde]
version = ">=1.0, <2.0"
features = ["derive"]
optional = true

[dependencies.serde_json]
version = ">=1.0, <2.0"
optional = true

[dependencies.tracing]
version = ">=0.1, <1.0"
optional = true

[dependencies.tracing-subscriber]
version = ">=0.3, <1.0"
features = [
    "env-filter",
    "fmt",
    "json",
]
optional = true

[dev-dependencies.proptest]
version = ">=1.0, <2.0"