[package]
edition = "2021"
name = "kelora"
version = "1.5.0"
authors = ["Dirk Loss <mail@dirk-loss.de>"]
build = false
exclude = [
"docs/",
"dev/",
"benchmarks/",
"fuzz/",
".github/",
".cargo/",
"entitlements.plist",
"Justfile",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A command-line log analysis tool with embedded Rhai scripting"
readme = "README.md"
keywords = [
"logging",
"parser",
"cli",
"logfmt",
"json",
]
categories = [
"command-line-utilities",
"parsing",
]
license = "MIT"
repository = "https://github.com/dloss/kelora"
[package.metadata.deb]
assets = [[
"target/release/kelora",
"usr/bin/",
"755",
]]
copyright = "2024-2026, Dirk Loss"
depends = ""
extended-description = "Kelora is a command-line log analysis tool with embedded Rhai scripting. It supports JSON, logfmt, CSV, and other log formats with powerful filtering, transformation, and aggregation capabilities."
maintainer = "Dirk Loss <mail@dirk-loss.de>"
priority = "optional"
section = "utils"
[[package.metadata.generate-rpm.assets]]
dest = "/usr/bin/kelora"
mode = "755"
source = "target/release/kelora"
[lib]
name = "kelora"
path = "src/lib.rs"
[[bin]]
name = "kelora"
path = "src/main.rs"
[[test]]
name = "ast_field_extraction"
path = "tests/ast_field_extraction.rs"
[[test]]
name = "auto_detect_integration_test"
path = "tests/auto_detect_integration_test.rs"
[[test]]
name = "auto_per_file_integration_test"
path = "tests/auto_per_file_integration_test.rs"
[[test]]
name = "basic_tests"
path = "tests/basic_tests.rs"
[[test]]
name = "cascade_format_tests"
path = "tests/cascade_format_tests.rs"
[[test]]
name = "conf_integration_test"
path = "tests/conf_integration_test.rs"
[[test]]
name = "config_integration_test"
path = "tests/config_integration_test.rs"
[[test]]
name = "context_integration_test"
path = "tests/context_integration_test.rs"
[[test]]
name = "datetime_integration_test"
path = "tests/datetime_integration_test.rs"
[[test]]
name = "decompression_tests"
path = "tests/decompression_tests.rs"
[[test]]
name = "discover_integration_test"
path = "tests/discover_integration_test.rs"
[[test]]
name = "emit_integration_test"
path = "tests/emit_integration_test.rs"
[[test]]
name = "empty_line_tests"
path = "tests/empty_line_tests.rs"
[[test]]
name = "error_handling_tests"
path = "tests/error_handling_tests.rs"
[[test]]
name = "field_access_tests"
path = "tests/field_access_tests.rs"
[[test]]
name = "file_operations_tests"
path = "tests/file_operations_tests.rs"
[[test]]
name = "filtering_tests"
path = "tests/filtering_tests.rs"
[[test]]
name = "format_parser_tests"
path = "tests/format_parser_tests.rs"
[[test]]
name = "hashing_integration_test"
path = "tests/hashing_integration_test.rs"
[[test]]
name = "head_limit_tests"
path = "tests/head_limit_tests.rs"
[[test]]
name = "help_topic_tests"
path = "tests/help_topic_tests.rs"
[[test]]
name = "input_handling_tests"
path = "tests/input_handling_tests.rs"
[[test]]
name = "metrics_tracking_tests"
path = "tests/metrics_tracking_tests.rs"
[[test]]
name = "micro_search_tests"
path = "tests/micro_search_tests.rs"
[[test]]
name = "multiline_tests"
path = "tests/multiline_tests.rs"
[[test]]
name = "network_functions_tests"
path = "tests/network_functions_tests.rs"
[[test]]
name = "output_formatting_tests"
path = "tests/output_formatting_tests.rs"
[[test]]
name = "parallel_tests"
path = "tests/parallel_tests.rs"
[[test]]
name = "prefix_extraction_tests"
path = "tests/prefix_extraction_tests.rs"
[[test]]
name = "random_integration_test"
path = "tests/random_integration_test.rs"
[[test]]
name = "script_include_tests"
path = "tests/script_include_tests.rs"
[[test]]
name = "section_extraction_tests"
path = "tests/section_extraction_tests.rs"
[[test]]
name = "signal_handling_tests"
path = "tests/signal_handling_tests.rs"
[[test]]
name = "span_variants_tests"
path = "tests/span_variants_tests.rs"
[[test]]
name = "state_integration_test"
path = "tests/state_integration_test.rs"
[[test]]
name = "take_limit_tests"
path = "tests/take_limit_tests.rs"
[[test]]
name = "text_functions_tests"
path = "tests/text_functions_tests.rs"
[[test]]
name = "timestamp_filtering_tests"
path = "tests/timestamp_filtering_tests.rs"
[[test]]
name = "type_annotation_integration_test"
path = "tests/type_annotation_integration_test.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.argon2]
version = "0.5"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.chrono-tz]
version = "0.10"
[dependencies.clap]
version = "4.0"
features = ["derive"]
[dependencies.clap_complete]
version = "4.5"
[dependencies.crossbeam-channel]
version = "0.5"
[dependencies.csv]
version = "1.3"
[dependencies.dirs]
version = "6.0"
[dependencies.drain-rs]
version = "0.3.0"
[dependencies.fastrand]
version = "2.0"
[dependencies.flate2]
version = "1.0"
[dependencies.glob]
version = "0.3"
[dependencies.grok]
version = "1.2"
[dependencies.hex]
version = "0.4"
[dependencies.hkdf]
version = "0.12"
[dependencies.hmac]
version = "0.12"
[dependencies.home]
version = "=0.5.9"
[dependencies.html-escape]
version = "0.2"
[dependencies.humantime]
version = "2.1"
[dependencies.hyperloglog]
version = "1.0"
features = ["with_serde"]
[dependencies.indexmap]
version = "2.0"
[dependencies.ipnet]
version = "2.9"
[dependencies.is-terminal]
version = "0.4"
[dependencies.lazy_static]
version = "1.4"
[dependencies.lru]
version = "0.16.3"
[dependencies.nom]
version = "8"
[dependencies.num_cpus]
version = "1.16"
[dependencies.once_cell]
version = "1.19"
[dependencies.regex]
version = "1.10"
[dependencies.rhai]
version = "1.24"
features = [
"sync",
"debugging",
"internals",
]
[dependencies.rustyline]
version = "17.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
features = ["preserve_order"]
[dependencies.sha2]
version = "0.10"
[dependencies.shell-words]
version = "1.1"
[dependencies.signal-hook]
version = "0.3"
features = ["iterator"]
[dependencies.tdigests]
version = "1.0"
[dependencies.terminal_size]
version = "0.4.3"
[dependencies.unicode-normalization]
version = "0.1"
[dependencies.unicode-width]
version = "0.2"
[dependencies.url]
version = "2.5"
[dependencies.urlencoding]
version = "2.1"
[dependencies.xxhash-rust]
version = "0.8"
features = ["xxh3"]
[dependencies.zstd]
version = "0.13"
[dev-dependencies.criterion]
version = "0.7"
features = ["html_reports"]
[dev-dependencies.proptest]
version = "1.5"
[dev-dependencies.tempfile]
version = "3.8"