- Added a title to the documentation to better describe what this library does

Dub

- Updated package description
- Added project website link
This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-03 17:49:32 +02:00
parent f8aa3b92cf
commit 01a5d779c8
2 changed files with 6 additions and 1 deletions

View File

@ -2,11 +2,12 @@
"authors": [ "authors": [
"Tristan B. Velloza Kildaire" "Tristan B. Velloza Kildaire"
], ],
"homepage": "https://deavmi.assigned.network/projects/tristanable",
"copyright": "Copyright © 2023, Tristan B. Kildaire", "copyright": "Copyright © 2023, Tristan B. Kildaire",
"dependencies": { "dependencies": {
"libsnooze": "0.2.9" "libsnooze": "0.2.9"
}, },
"description": "Tag-based asynchronous messaging framework", "description": "Tristanable network message queuing framework",
"license": "LGPL-3.0", "license": "LGPL-3.0",
"name": "tristanable", "name": "tristanable",
"targetType": "library" "targetType": "library"

View File

@ -1,4 +1,8 @@
/**
* Tristanable network message queuing framework
*/
module tristanable; module tristanable;
public import tristanable.manager : Manager; public import tristanable.manager : Manager;
public import tristanable.queue : Queue, QueueItem; public import tristanable.queue : Queue, QueueItem;