chore(posix_mq.rs): Prepare new release to crates.io

... and update some outdated stuff in the README while we're at it.

Change-Id: Ib3a12596bd1ba61e91ac6e1d37106b616da3030d
Reviewed-on: https://cl.tvl.fyi/c/depot/+/5232
Reviewed-by: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
This commit is contained in:
Vincent Ambo 2022-02-05 16:25:42 +03:00 committed by tazjin
parent b5150fbacf
commit 77fbe57819
2 changed files with 16 additions and 4 deletions

View file

@ -1,10 +1,11 @@
[package]
name = "posix_mq"
version = "0.9.0"
authors = ["Vincent Ambo <mail@tazj.in>"]
version = "3771.0.0"
authors = ["Vincent Ambo <tazjin@tvl.su>"]
description = "(Higher-level) Rust bindings to POSIX message queues"
license = "MIT"
repository = "https://git.tazj.in/tree/ops/posix_mq.rs"
homepage = "https://cs.tvl.fyi/depot/-/tree/ops/posix_mq.rs"
repository = "https://code.tvl.fyi/depot.git:/ops/posix_mq.rs.git"
[dependencies]
nix = "0.23"

View file

@ -1,7 +1,6 @@
posix_mq
========
[![Build Status](https://travis-ci.org/aprilabank/posix_mq.rs.svg?branch=master)](https://travis-ci.org/aprilabank/posix_mq.rs)
[![crates.io](https://img.shields.io/crates/v/posix_mq.svg)](https://crates.io/crates/posix_mq)
This is a simple, relatively high-level library for the POSIX [message queue API][]. It wraps the lower-level API in a
@ -29,5 +28,17 @@ queue.send(&message).expect("message sending failed");
let result = queue.receive().expect("message receiving failed");
```
## Development
Development happens in the [TVL
monorepo](https://cs.tvl.fyi/depot/-/tree/ops/posix_mq.rs).
Starting from version `3771.0.0`, the version numbers correspond to
_revisions_ of the TVL repository, available as git refs (e.g.
`refs/r/3771`).
See the TVL documentation for more information about how to contribute
to the codebase.
[message queue API]: https://linux.die.net/man/7/mq_overview
[sister library]: https://github.com/aprilabank/posix_mq.kt