[package]
edition = "2024"
rust-version = "1.85"
name = "ticklog"
version = "0.1.0"
authors = ["Tensorbinge <tensorbinge@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast, minimal logging library for Rust, designed for performance-critical applications, e.g. high-frequency trading."
readme = "README.md"
keywords = [
"logging",
"low-latency",
"performance",
]
categories = ["development-tools::debugging"]
license = "MIT"
repository = "https://github.com/tensorbinge/ticklog"
[lib]
name = "ticklog"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "sink_custom"
path = "examples/sinks/custom.rs"
[[example]]
name = "sink_logroller"
path = "examples/sinks/logroller.rs"
[[example]]
name = "sink_stderr"
path = "examples/sinks/stderr.rs"
[[example]]
name = "sink_tracing_appender"
path = "examples/sinks/tracing_appender.rs"
[[test]]
name = "arg_eval_once"
path = "tests/arg_eval_once.rs"
[[test]]
name = "backpressure_block"
path = "tests/backpressure_block.rs"
[[test]]
name = "backpressure_drop"
path = "tests/backpressure_drop.rs"
[[test]]
name = "builder_lifecycle"
path = "tests/builder_lifecycle.rs"
[[test]]
name = "fanout"
path = "tests/fanout.rs"
[[test]]
name = "level_filter"
path = "tests/level_filter.rs"
[[test]]
name = "lifecycle"
path = "tests/lifecycle.rs"
[[test]]
name = "logging"
path = "tests/logging.rs"
[[test]]
name = "multithread"
path = "tests/multithread.rs"
[[test]]
name = "oversized_record"
path = "tests/oversized_record.rs"
[[test]]
name = "warmup"
path = "tests/warmup.rs"
[[bench]]
name = "end_to_end"
path = "benches/end_to_end.rs"
harness = false
[[bench]]
name = "latency_vs_baseline"
path = "benches/cmp/latency/latency_vs_baseline.rs"
harness = false
[[bench]]
name = "latency_vs_env_logger"
path = "benches/cmp/latency/latency_vs_env_logger.rs"
harness = false
[[bench]]
name = "latency_vs_slog"
path = "benches/cmp/latency/latency_vs_slog.rs"
harness = false
[[bench]]
name = "latency_vs_tracing"
path = "benches/cmp/latency/latency_vs_tracing.rs"
harness = false
[[bench]]
name = "message_types"
path = "benches/message_types.rs"
harness = false
[[bench]]
name = "scaling_vs_baseline"
path = "benches/cmp/scaling/scaling_vs_baseline.rs"
harness = false
[[bench]]
name = "scaling_vs_env_logger"
path = "benches/cmp/scaling/scaling_vs_env_logger.rs"
harness = false
[[bench]]
name = "scaling_vs_slog"
path = "benches/cmp/scaling/scaling_vs_slog.rs"
harness = false
[[bench]]
name = "scaling_vs_tracing"
path = "benches/cmp/scaling/scaling_vs_tracing.rs"
harness = false
[[bench]]
name = "single_record"
path = "benches/single_record.rs"
harness = false
[[bench]]
name = "throughput_vs_baseline"
path = "benches/cmp/throughput/throughput_vs_baseline.rs"
harness = false
[[bench]]
name = "throughput_vs_env_logger"
path = "benches/cmp/throughput/throughput_vs_env_logger.rs"
harness = false
[[bench]]
name = "throughput_vs_slog"
path = "benches/cmp/throughput/throughput_vs_slog.rs"
harness = false
[[bench]]
name = "throughput_vs_tracing"
path = "benches/cmp/throughput/throughput_vs_tracing.rs"
harness = false
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.env_logger]
version = "0.11"
[dev-dependencies.log]
version = "0.4"
[dev-dependencies.logroller]
version = "0.1.12"
[dev-dependencies.slog]
version = "2.7"
[dev-dependencies.slog-async]
version = "2.8"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tracing]
version = "0.1"
[dev-dependencies.tracing-appender]
version = "0.2.5"
[dev-dependencies.tracing-subscriber]
version = "0.3"