mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-21 07:14:25 +01:00
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>
22 lines
601 B
TOML
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"
|