Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Difference From ump-ng-0.1.0 To ump-ng-0.2.0
2024-09-12
| ||
20:25 | Move clippy config from bacon.toml to Cargo.toml. check-in: e3dd8a1bd0 user: jan tags: trunk | |
2024-09-10
| ||
00:30 | Rename `MsgType::Put` to `MsgType::Post`. Dependency maintenance. check-in: 6f4b9d43d1 user: jan tags: trunk, ump-ng-0.2.0 | |
2024-09-09
| ||
20:59 | Make use of updated swctx's ability to report when the waitctx has been dropped. Clippy fixups. check-in: a48d827d1a user: jan tags: trunk | |
2023-10-03
| ||
07:17 | Document WeakClient. check-in: fa626b58be user: jan tags: trunk | |
2023-10-02
| ||
14:47 | Happy clippy. check-in: 6b4a0d3b99 user: jan tags: trunk, ump-ng-0.1.0 | |
14:44 | Export WaitReply. check-in: 196e3c425c user: jan tags: trunk | |
Changes to Cargo.toml.
1 2 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 | - + + + + + + + - - - + + - + | [package] name = "ump-ng" |
︙ |
Changes to README.md.
1 2 3 4 5 6 7 8 9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | + + + + + + + + | # Micro-Message Passing Library The _ump-ng_ crate is a simple client/server message passing library for intra-process communication. Its primary purpose is to allow cross async/non-async communication (for both the server and client endpoints). ump-ng is similar to [ump](https://crates.io/crates/ump), but it has a uni-directional message passing operation. [![Crates.io][crates-badge]][crates-url] [![0BSD licensed][0bsd-badge]][0bsd-url] [crates-badge]: https://img.shields.io/crates/v/ump-ng.svg [crates-url]: https://crates.io/crates/ump-ng [0bsd-badge]: https://img.shields.io/badge/license-0BSD-blue.svg [0bsd-url]: https://opensource.org/license/0bsd |
Added bacon.toml.