[package]
edition = "2024"
rust-version = "1.88.0"
name = "rlg-cli"
version = "0.0.11"
authors = ["Sebastien Rousseau <sebastian.rousseau@gmail.com>"]
build = false
include = [
"/Cargo.toml",
"/LICENSE-APACHE",
"/LICENSE-MIT",
"/README.md",
"/src/**",
"/tests/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = """
`rlg` — `jq` for structured logs. Tail, filter, and convert log streams
across all 14 `rlg` formats from the command line.
"""
homepage = "https://rustlogs.com/"
documentation = "https://docs.rs/rlg-cli"
readme = "README.md"
keywords = [
"log",
"logging",
"cli",
"rlg",
"tail",
]
categories = [
"command-line-utilities",
"development-tools::debugging",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/sebastienrousseau/rlg"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
[lib]
name = "rlg_cli"
path = "src/lib.rs"
[[bin]]
name = "rlg"
path = "src/main.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "proptest_filter"
path = "tests/proptest_filter.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.6"
features = ["derive"]
[dependencies.rlg]
version = "0.0.11"
[dependencies.serde_json]
version = "1.0"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.criterion]
version = "0.8"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.proptest]
version = "1.5"
[dev-dependencies.tempfile]
version = "3"
[lints.rust]
dead_code = "deny"
missing_copy_implementations = "warn"
missing_debug_implementations = "forbid"
missing_docs = "deny"
non_ascii_idents = "forbid"
unreachable_pub = "forbid"
unsafe_code = "deny"
unused_extern_crates = "warn"