2021-07-07 20:23:04 +02:00
|
|
|
[package]
|
|
|
|
name = "sysvmq"
|
|
|
|
version = "0.1.0"
|
2023-10-28 20:20:48 +02:00
|
|
|
edition = "2021"
|
2021-07-07 20:23:04 +02:00
|
|
|
authors = ["finga <mqrs@onders.org>"]
|
|
|
|
repository = "https://git.onders.org/finga/mqrs"
|
|
|
|
license = "GPL-3.0-or-later"
|
2023-10-14 12:29:14 +02:00
|
|
|
description = "A simple API for SysV IPC message queues."
|
2023-12-08 01:21:10 +01:00
|
|
|
homepage = "https://git.onders.org/finga/mqrs/sysvmq"
|
|
|
|
readme = "README.md"
|
2023-10-14 12:29:14 +02:00
|
|
|
keywords = ["message_queue", "mq", "mqueue", "queue", "sysv", "ipc"]
|
|
|
|
categories = ["os"]
|
2021-07-07 20:23:04 +02:00
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
libc = "0.2.98"
|
|
|
|
thiserror = "1.0.26"
|
2023-10-15 19:59:33 +02:00
|
|
|
nix = "0.27.1"
|