prologger 0.3.0

A production-grade, ergonomic Rust logging library with colored output, file rotation, and structured formatting.
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"
rust-version = "1.63"
name = "prologger"
version = "0.3.0"
authors = ["Jessiejaymz810s"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A production-grade, ergonomic Rust logging library with colored output, file rotation, and structured formatting."
homepage = "https://github.com/Jessiejaymz810s/prologger"
documentation = "https://docs.rs/prologger"
readme = "README.md"
keywords = [
    "logging",
    "logger",
    "log",
    "structured",
    "color",
]
categories = ["development-tools::debugging"]
license = "MIT"
repository = "https://github.com/Jessiejaymz810s/prologger"

[features]
async = []
color = []
default = [
    "color",
    "file",
]
file = []
full = [
    "color",
    "json",
    "file",
    "syslog",
    "tracing",
    "async",
    "x_grok",
]
json = [
    "serde",
    "serde_json",
]
syslog = ["dep:syslog"]
tracing = [
    "dep:tracing",
    "dep:tracing-core",
    "dep:tracing-subscriber",
]
x_grok = [
    "dep:reqwest",
    "json",
]

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

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

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

[[example]]
name = "file_logging"
path = "examples/file_logging.rs"
required-features = ["file"]

[[example]]
name = "json_output"
path = "examples/json_output.rs"
required-features = ["json"]

[[example]]
name = "x_grok_sink"
path = "examples/x_grok_sink.rs"
required-features = [
    "x_grok",
    "async",
]

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

[[bench]]
name = "logging_bench"
path = "benches/logging_bench.rs"
harness = false

[dependencies.log]
version = "0.4"
features = ["std"]

[dependencies.reqwest]
version = "0.12"
features = [
    "blocking",
    "json",
]
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true

[dependencies.serde_json]
version = "1.0"
optional = true

[dependencies.syslog]
version = "6.1"
optional = true

[dependencies.tracing]
version = "0.1"
optional = true

[dependencies.tracing-core]
version = "0.1"
optional = true

[dependencies.tracing-subscriber]
version = "0.3"
optional = true

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.tempfile]
version = "3"