mirror of
https://old.git.ood.ovh/nehu/tokio-messaging.git
synced 2025-04-28 19:38:06 +02:00
15 lines
531 B
TOML
15 lines
531 B
TOML
[package]
|
|
name = "tokio-messaging"
|
|
description = "Publish/subscribe functionality using Tokio channels"
|
|
version = "0.0.1"
|
|
edition = "2021"
|
|
license = "GPL-3.0-or-later"
|
|
homepage = "https://github.com/etienne-k/tokio-messaging"
|
|
repository = "https://github.com/etienne-k/tokio-messaging"
|
|
categories = ["asynchronous"]
|
|
keywords = ["tokio", "async", "publish", "subscribe", "messaging"]
|
|
|
|
[dependencies]
|
|
lazy_static = "1.4"
|
|
num-traits = "0.2"
|
|
tokio = { version = "1.21", features = ["macros", "rt", "rt-multi-thread", "sync", "time"] }
|