co-actor 0.1.0

Very lightweight actor abstraction over tokio channels.
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 = "2021"
rust-version = "1.91"
name = "co-actor"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Very lightweight actor abstraction over tokio channels."
homepage = "https://www.cokit.org"
documentation = "https://www.cokit.org/docs/"
readme = "README.md"
license = "AGPL-3.0-only"
repository = "https://github.com/1iolabs/cokit.git"

[features]
default = []
js = [
    "dep:web-time",
    "dep:futures-timer",
    "dep:wasm-bindgen-futures",
    "dep:tokio_with_wasm",
]
web = ["js"]

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

[dependencies.anyhow]
version = "1"
features = ["backtrace"]

[dependencies.async-stream]
version = "0.3.3"

[dependencies.async-trait]
version = "0.1.57"

[dependencies.co-primitives]
version = "0.1.0"

[dependencies.derive_more]
version = "0.99.17"

[dependencies.futures]
version = "0.3.30"

[dependencies.futures-timer]
version = "3"
optional = true

[dependencies.static_assertions]
version = "1.1.0"

[dependencies.thiserror]
version = "1"

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

[dependencies.tokio-stream]
version = "0.1.15"
features = ["sync"]
default-features = false

[dependencies.tokio-util]
version = "0.7"

[dependencies.tokio_with_wasm]
version = "0.9"
features = ["sync"]
optional = true

[dependencies.tracing]
version = "0.1.34"

[dependencies.wasm-bindgen-futures]
version = "0.4.55"
optional = true

[dependencies.web-time]
version = "1.1"
optional = true

[dev-dependencies.insta]
version = "1.34.0"
features = [
    "default",
    "yaml",
]

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio]
version = "1"
features = [
    "sync",
    "time",
    "rt",
]

[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio-util]
version = "0.7"
features = ["rt"]

[target."cfg(tokio_unstable)".dependencies.tokio]
version = "1"
features = [
    "full",
    "tracing",
]