freeswitch-log-parser 0.4.2

Parser for FreeSWITCH log files — handles compressed .xz files, multi-line dumps, truncated buffers, and stateful UUID/timestamp tracking
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"
name = "freeswitch-log-parser"
version = "0.4.2"
authors = ["Jérôme Poulin <jeromepoulin@gmail.com>"]
build = false
exclude = [
    "packaging/",
    ".gitleaks.toml",
    "tests/fixtures/",
    "tests/production_log.rs",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parser for FreeSWITCH log files — handles compressed .xz files, multi-line dumps, truncated buffers, and stateful UUID/timestamp tracking"
documentation = "https://docs.rs/freeswitch-log-parser"
readme = "README.md"
keywords = [
    "freeswitch",
    "log",
    "parser",
    "voip",
    "telephony",
]
categories = [
    "parser-implementations",
    "network-programming",
]
license = "LGPL-2.1-or-later"
repository = "https://github.com/ticpu/freeswitch-log-parser"

[features]
cli = [
    "dep:clap",
    "dep:clap_complete",
    "dep:xz2",
    "dep:regex",
]
tui = [
    "cli",
    "dep:ratatui",
    "dep:serde",
    "dep:serde_yml",
]

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

[[bin]]
name = "fslog"
path = "src/bin/fslog/main.rs"
required-features = ["cli"]

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

[dependencies.clap]
version = "4"
features = [
    "derive",
    "env",
]
optional = true

[dependencies.clap_complete]
version = "4"
optional = true

[dependencies.freeswitch-types]
version = "0.15"
default-features = false

[dependencies.ratatui]
version = "0.30"
optional = true

[dependencies.regex]
version = "1"
optional = true

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

[dependencies.serde_yml]
version = "0.0.12"
optional = true

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

[dev-dependencies.xz2]
version = "0.1"