postvan 0.3.0

A minimalistic implementation of pub/sub messaging
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "postvan"
version = "0.3.0"
authors = ["Glenn Wallace glennw-coding@proton.me"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A minimalistic implementation of pub/sub messaging"
readme = "README.md"
keywords = [
    "actor",
    "event",
]
categories = ["concurrency"]
license = "MIT"
repository = "https://codeberg.org/Stack-Syndicate/postvan"

[features]
async-std = ["dep:async-std"]
default = ["tokio"]
tokio = ["dep:tokio"]

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

[[example]]
name = "example"
path = "examples/example.rs"

[dependencies.anyhow]
version = "1.0.102"

[dependencies.async-std]
version = "1.0"
features = ["attributes"]
optional = true

[dependencies.dashmap]
version = "6.1.0"

[dependencies.flume]
version = "0.12"

[dependencies.itertools]
version = "0.14.0"

[dependencies.tokio]
version = "1.52.3"
features = [
    "macros",
    "rt-multi-thread",
    "sync",
]
optional = true

[dependencies.uuid]
version = "1.23.1"
features = ["v4"]