[package]
edition = "2021"
name = "ttlog"
version = "0.1.21"
authors = ["gentleduck"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "High-performance lock-free tracing and logging system"
readme = "README.md"
keywords = [
"logging",
"tracing",
"performance",
"async",
"lock-free",
]
categories = [
"development-tools::debugging",
"asynchronous",
"data-structures",
]
license = "MIT"
repository = "https://github.com/gentleeduck/duck-ttlog"
[lib]
name = "ttlog"
path = "src/lib.rs"
[[test]]
name = "macro_dynamic_kv"
path = "tests/macro_dynamic_kv.rs"
[[test]]
name = "macro_tests"
path = "tests/macro_tests.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.crossbeam-channel]
version = "0.5"
[dependencies.crossbeam-queue]
version = "0.3.12"
[dependencies.gethostname]
version = "1.1.0"
[dependencies.itoa]
version = "1.0.15"
[dependencies.lz4]
version = "1.28"
[dependencies.ryu]
version = "1.0.20"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_cbor]
version = "0.11.2"
[dependencies.serde_json]
version = "1.0"
[dependencies.smallvec]
version = "1.15.1"
features = ["serde"]
[dependencies.tracing]
version = "0.1"
[dependencies.ttlog-macros]
version = "0.1.21"
[dev-dependencies.tabled]
version = "0.20"
[dev-dependencies.tempfile]
version = "3.8"
[target."cfg(unix)".dependencies.signal-hook]
version = "0.3.18"
[lints.clippy]
approx_constant = "allow"
assertions_on_constants = "allow"
clone_on_copy = "allow"
collapsible_else_if = "allow"
collapsible_if = "allow"
collapsible_match = "allow"
empty_line_after_doc_comments = "allow"
field_reassign_with_default = "allow"
format_in_format_args = "allow"
large_enum_variant = "allow"
let_and_return = "allow"
let_unit_value = "allow"
manual_clamp = "allow"
manual_map = "allow"
manual_range_contains = "allow"
manual_strip = "allow"
manual_unwrap_or_default = "allow"
match_like_matches_macro = "allow"
module_inception = "allow"
mut_from_ref = "allow"
needless_borrow = "allow"
needless_lifetimes = "allow"
needless_pass_by_value = "allow"
needless_question_mark = "allow"
needless_range_loop = "allow"
needless_return = "allow"
new_without_default = "allow"
nonminimal_bool = "allow"
or_fun_call = "allow"
overly_complex_bool_expr = "allow"
ptr_arg = "allow"
redundant_clone = "allow"
redundant_closure = "allow"
redundant_field_names = "allow"
result_large_err = "allow"
should_implement_trait = "allow"
single_match = "allow"
too_many_arguments = "allow"
type_complexity = "allow"
unnecessary_unwrap = "allow"
unnecessary_wraps = "allow"
unused_io_amount = "allow"
useless_conversion = "allow"
useless_format = "allow"
useless_vec = "allow"
vec_init_then_push = "allow"
zero_ptr = "allow"