action_dispatch 0.1.0

通用的基于属性宏的 Action 注册与分发系统,支持正则匹配、优先级、全局同步执行模式
Documentation
[package]
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
name = "action_dispatch"
#version = "0.1.0"
#edition = "2021"
#authors = ["jonas.jzy@gmail.com"]
#license = "MIT OR Apache-2.0"
description = "通用的基于属性宏的 Action 注册与分发系统,支持正则匹配、优先级、全局同步执行模式"
keywords = ["action", "dispatch", "macro", "event", "handler"]
categories = ["rust-patterns", "asynchronous"]
repository = "https://github.com/5Gene/Dispatcher"
homepage = "https://github.com/5Gene"

[dependencies]
action_dispatch_core = { path = "../action_dispatch_core", version = "0.1.0" }
action_dispatch_macro = { path = "../action_dispatch_macro", version = "0.1.0" }

[lib]
name = "action_dispatch"
path = "src/lib.rs"

[dev-dependencies]
# 用于测试和示例
rand = "0.8"