whisk 0.13.0

Simple and fast lockless async channels
Documentation
# Whisk
# Copyright © 2022-2024 Jeron Aldaron Lau.
#
# Licensed under any of:
#  - Apache License, Version 2.0 (https://www.apache.org/licenses/LICENSE-2.0)
#  - Boost Software License, Version 1.0 (https://www.boost.org/LICENSE_1_0.txt)
#  - MIT License (https://mit-license.org/)
# At your choosing (See accompanying files LICENSE_APACHE_2_0.txt,
# LICENSE_MIT.txt and LICENSE_BOOST_1_0.txt).

[package]
name = "whisk"
version = "0.13.0"
license = "Apache-2.0 OR BSL-1.0 OR MIT"
description = "Simple and fast lockless async channels"
repository = "https://github.com/ardaku/whisk"
documentation = "https://docs.rs/whisk"
homepage = "https://github.com/ardaku/whisk/blob/stable/CHANGELOG.md"
include = [
    "/LICENSE_APACHE",
    "/LICENSE_BOOST",
    "/LICENSE_MIT",
    "/README.md",
    "/src/*",
    "/examples/tokio.rs",
]
categories = [
    "asynchronous",
    "concurrency",
    "embedded",
    "hardware-support",
    "no-std",
]
keywords = ["channel", "actor", "mpmc", "notifier", "event_iterator"]
readme = "README.md"
edition = "2021"
rust-version = "1.70"

[[example]]
name = "tokio"
required-features = ["futures_core_3"]

[dependencies.futures_core_3]
package = "futures-core"
version = "0.3"
optional = true
default-features = false

[dependencies.event_iterator]
version = "0.1"
optional = true

[dev-dependencies]
async_main = { version = "0.4", features = ["pasts"] }
dl_api = "0.4"
flume = "0.11"
futures = "0.3"
libm = "0.2"
ntest = "0.9"
tokio-stream = "0.1"

[dev-dependencies.pasts]
version = "0.14"
default-features = false

[dev-dependencies.tokio]
version = "1.28"
default-features = false
features = ["rt-multi-thread", "macros"]

[features]
default = []

[profile.dev]
panic = "abort"

[profile.release]
panic = "abort"

[package.metadata.docs.rs]
all-features = true