[package]
edition = "2021"
name = "flakysed"
version = "0.1.0"
authors = ["Ernesto Arbitrio <ernesto.arbitrio@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
Clean CircleCI log files. Processes the input file to extract and clean log lines
related to a specific worker, stopping at the first failure if present, and writes
the normalized output to the specified file.
"""
homepage = "https://github.com/ernestoarbitrio/flakysed/"
readme = "README.md"
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/ernestoarbitrio/flakysed/"
[lib]
name = "flakysed"
path = "src/lib.rs"
[[bin]]
name = "flakysed"
path = "src/main.rs"
[[test]]
name = "file_processing_tests"
path = "tests/file_processing_tests.rs"
[dependencies.clap]
version = "4.5.26"
features = ["derive"]
[dependencies.fancy-regex]
version = "0.14.0"
[dependencies.regex]
version = "1.9"
[lints.clippy]
pedantic = "warn"