polybox 0.0.2

Message-passing abstractions to make working with channels and actors a more seamless experience
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 = "polybox"
version = "0.0.2"
authors = ["Jasper van der Werf"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Message-passing abstractions to make working with channels and actors a more seamless experience"
homepage = "https://github.com/jvdwrf/polybox"
readme = "README.md"
keywords = [
    "actor",
    "actor-system",
    "tokio",
]
categories = ["concurrency"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/jvdwrf/polybox"

[package.metadata.docs.rs]
features = ["_ra"]

[features]
_ra = [
    "tokio",
    "flume",
]
default = ["tokio"]
flume = ["dep:flume"]
tokio = []

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

[[test]]
name = "basics"
path = "tests/basics.rs"

[[test]]
name = "example"
path = "tests/example.rs"

[dependencies.flume]
version = "0.12"
optional = true

[dependencies.futures]
version = "0.3"

[dependencies.polybox-codegen]
version = "0.0.2"

[dependencies.polybox-core]
version = "0.0.2"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = ["sync"]

[dependencies.type-sets]
version = "0.0.6"

[dev-dependencies.tokio]
version = "1"
features = ["full"]