# 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 = "rustycat" version = "0.1.0" authors = ["Mateusz Butkiewicz"] exclude = [ "test_res/*", "tests.rs", ] description = "Regex-based parser for Android Debug Brigde (adb) logcat" readme = "README.md" keywords = [ "logcat", "android", "cli", ] categories = [ "command-line-utilities", "parser-implementations", ] license = "MIT" repository = "https://gitlab.com/Mirror0/rustycat" [[bin]] name = "rustycat" path = "src/main.rs" required-features = ["build-binary"] [dependencies.chrono] version = "0.4.37" [dependencies.clap] version = "4.5.4" features = ["derive"] optional = true [dependencies.regex] version = "1.10.4" [dependencies.serde] version = "1.0.197" features = ["derive"] optional = true [dependencies.serde_json] version = "1.0.115" [dev-dependencies.pretty_assertions] version = "1.4.0" [features] build-binary = [ "dep:clap", "serde", ] default = ["serde"] serde = [ "dep:serde", "chrono/serde", ]