rmesg 1.0.19

This is a fully Rust-based implementation of the popular dmesg Linux utility, giving programmatic access to the kernel log buffer.
Documentation
[[bench]]
harness = false
name = "benchmark"
required-features = ["sync", "async"]

[[bin]]
name = "rmesg"
path = "src/main.rs"
required-features = ["async"]
[dependencies.cfg-if]
version = "1.0.0"

[dependencies.clap]
version = "3.0.14"

[dependencies.enum-display-derive]
version = "0.1.1"

[dependencies.errno]
version = "0.2.8"

[dependencies.futures]
optional = true
version = "0.3.19"

[dependencies.futures-util]
optional = true
version = "0.3.19"

[dependencies.lazy_static]
version = "1.4.0"

[dependencies.libc]
version = "0.2.112"

[dependencies.nonblock]
version = "0.1.0"

[dependencies.num]
version = "0.4.0"

[dependencies.num-derive]
version = "0.3.3"

[dependencies.num-traits]
version = "0.2.14"

[dependencies.pin-project]
optional = true
version = "1.0.8"

[dependencies.regex]
version = "1.5.4"

[dependencies.serde]
features = ["derive"]
optional = true
version = "1.0.132"

[dependencies.strum]
version = "0.24.0"

[dependencies.strum_macros]
version = "0.24.0"

[dependencies.tokio]
features = ["rt", "fs", "io-util", "macros", "time"]
optional = true
version = "1.15.0"
[dev-dependencies.criterion]
features = ["async_tokio"]
version = "0.3.5"

[dev-dependencies.rand]
version = "0.8.4"

[dev-dependencies.tokio-stream]
version = "0.1.8"

[features]
async = ["futures", "futures-util", "tokio", "pin-project"]
default = ["async"]
extra-traits = ["serde"]
sync = []

[lib]
name = "rmesg"
path = "src/lib.rs"

[package]
authors = ["Archis Gore <me@archisgore.com>"]
categories = ["os", "command-line-utilities"]
description = "This is a fully Rust-based implementation of the popular dmesg Linux utility, giving\n programmatic access to the kernel log buffer."
edition = "2018"
keywords = ["dmesg", "klogctl", "printk", "syslog"]
license = "Apache-2.0"
name = "rmesg"
readme = "README.md"
repository = "https://github.com/archisgore/rmesg"
version = "1.0.19"
[package.metadata.cargo-all-features]
skip_optional_dependencies = true
[profile.dev]
panic = "abort"

[profile.release]
codegen-units = 1
lto = "fat"
panic = "abort"