Files
kata-containers/src/tools/log-parser-rs/Cargo.toml
Gabe Venberg 6594a9329d tools: made log-parser-rs
Eventual replacement of kata-log-parser, but for now replicates its
functionaility for the new runtime-rs syntax. Takes in log files,
parses, sorts by timestamp, spits them out in json, csv, xml, toml, and
a few others.

Fixes #5350

Signed-off-by: Gabe Venberg <gabevenberg@gmail.com>
2023-05-02 13:16:54 -05:00

22 lines
601 B
TOML

[package]
name = "log-parser"
version = "0.0.1"
edition = "2021"
authors = ["The Kata Containers community <kata-dev@lists.katacontainers.io>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
toml = "0.4"
ron = "0.8"
quick-xml = { version = "0.28", features = ["serialize"]}
csv = "1.2"
serde_with = "2.3"
clap = { version = "4.1", features = ["derive", "cargo"] }
thiserror = "1.0"
chrono = { version = "0.4", features = ["serde"]}
slog = "2.7"