mqrs/Cargo.toml
finga 12b117db7e Refactor logging
To supporte more than a single log level `log` and `env_logger` crates
are used. For the application to support the different type of
argument, the verbose argument definition was adapted.
2021-07-07 17:13:08 +02:00

26 lines
654 B
TOML

[package]
name = "mqrs"
version = "0.1.1"
authors = ["finga <mqrs@onders.org>"]
edition = "2018"
license = "GPL-3.0-or-later"
readme = "README.md"
description = "A CLI program for interacting with Posix Message Queues."
[dependencies]
anyhow = "1.0"
clap = "3.0.0-beta.2"
posixmq = "1.0"
chrono = "0.4"
humantime = "2.1"
log = "0.4"
env_logger = "0.8"
[package.metadata.deb]
extended-description = "`mqrs` is a small cli application to handle POSIX message queues."
assets = [
["target/release/mqrs", "usr/bin/", "755"],
["README.md", "usr/share/doc/cargo-deb/README.md", "644"],
["mqrs.1", "/usr/share/man/man1/mqrs.1", "644"],
]