rmesg 1.0.3

This is a fully Rust-based implementation of the popular dmesg Linux utility, giving programmatic access to the kernel log buffer.
Documentation
[[bin]]
name = "rmesg"
path = "src/main.rs"
[dependencies.cfg-if]
version = "1.0.0"

[dependencies.clap]
version = "2.33.3"

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

[dependencies.errno]
version = "0.2.7"

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

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

[dependencies.lazy_static]
version = "1.4.0"

[dependencies.libc]
version = "0.2.81"

[dependencies.nonblock]
version = "0.1.0"

[dependencies.num]
version = "0.3.1"

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

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

[dependencies.regex]
version = "1.4.2"

[dependencies.schemars]
version = "0.8.0"

[dependencies.serde]
features = ["derive", "rc"]
version = "1.0.118"

[dependencies.strum]
version = "0.20.0"

[dependencies.strum_macros]
version = "0.20.1"

[dependencies.tokio]
features = ["rt-multi-thread", "macros", "time", "fs", "io-util", "stream"]
optional = true
version = "0.3.6"
[dev-dependencies.tokio-test]
version = "0.3.0"

[features]
async = ["futures", "futures-util", "tokio"]
ptr = []

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

[package]
authors = ["Archis Gore <archis@polyverse.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-file = "LICENSE"
name = "rmesg"
readme = "README.md"
repository = "https://github.com/polyverse/rmesg"
version = "1.0.3"