[package]
edition = "2021"
name = "cirious_codex_logger"
version = "0.2.1"
authors = ["Cirious Studio <cirious.studio@proton.me>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Structured logging library for the Cirious Codex ecosystem."
homepage = "https://github.com/Cirious-Studio/cirious_codex_logger"
documentation = "https://docs.rs/cirious_codex_logger"
readme = "README.md"
keywords = [
"logging",
"logger",
"terminal",
"observability",
"tracing",
]
categories = [
"development-tools::debugging",
"command-line-interface",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Cirious-Studio/cirious_codex_logger"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "cirious_codex_logger"
path = "src/lib.rs"
[[example]]
name = "async_logging"
path = "examples/async_logging.rs"
[[example]]
name = "basic_logging"
path = "examples/basic_logging.rs"
[[example]]
name = "rolling_file"
path = "examples/rolling_file.rs"
[[test]]
name = "async_flow_test"
path = "tests/async_flow_test.rs"
[[test]]
name = "file_rotation_test"
path = "tests/file_rotation_test.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[dependencies.cirious_codex_term]
version = "0.2.1"
[lints.clippy]
expect_used = "warn"
nursery = "warn"
pedantic = "warn"
unwrap_used = "warn"
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
unsafe_code = "warn"