tvl-depot/Cargo.toml
Vincent Ambo d908fe1cbc feat: Add commands to get/set message queue rlimit
When creating a large number of queues the message queue rlimit may be
reached (see mq_overview for details).

This commit adds an `mq rlimit` function that displays the current
rlimits and an optional `--rlimit` flag to the `create` command that
can raise the rlimit when required.
2017-11-13 14:23:39 +01:00

10 lines
167 B
TOML

[package]
name = "mq"
version = "0.1.0"
authors = ["Vincent Ambo <tazjin@gmail.com>"]
[dependencies]
clap = "2.26.2"
libc = "0.2.32"
nix = "0.9.0"
posix_mq = "0.1.1"