This commit is contained in:
Rowan S-L 2023-09-20 12:01:55 -04:00
parent e00dc9c4da
commit 85c7af2494
3 changed files with 6 additions and 3 deletions

2
Cargo.lock generated
View File

@ -131,7 +131,7 @@ dependencies = [
[[package]]
name = "dabus"
version = "0.5.0"
version = "0.5.1"
dependencies = [
"anyhow",
"async-trait",

View File

@ -6,6 +6,9 @@ and can interact with eachother **without aknowlaging eachothers existance**.
it maintains all of rust's type saftey and guarentees, while being able to act
in a highly dynamic fasion, almost like something out of javascript, but with none of the downsides.
## Issue tracker
the issue tracker for this project is on the [github mirror](https://github.com/rowan-sl/dabus)
## Key Features
- Type-Erased: the central `DABus` structure does not need to know any of the types related to a handler, or any events it is processing

View File

@ -1,12 +1,12 @@
[package]
name = "dabus"
version = "0.5.0"
version = "0.5.1"
edition = "2021"
license = "MIT"
readme = "../README.md"
authors = ["Rowan S-L <rowan@fawkes.io>"]
description = "Dynamic Aplication Controll Bus - an asynchronous, event based module system for thoes who want to move fast and *not* break things"
repository = "https://github.com/rowan-sl/dabus/"
repository = "https://git.fawkes.io/mtnash/dabus/"
keywords = ["module", "runtime", "bus", "async", "message"]
categories = ["asynchronous", "rust-patterns"]