crossbus 0.0.6-a

A Platform-Less Runtime-Less Actor Computing Model
Documentation
[[example]]
name = "ring"
path = "examples/ring.rs"
required-features = ["log"]

[[example]]
name = "ping"
path = "examples/ping.rs"
required-features = ["log"]

[[example]]
name = "fibonacci"
path = "examples/fibonacci.rs"
required-features = ["log"]
[dependencies.async-std]
default-features = false
features = ["alloc", "default", "unstable"]
optional = true
version = "1.12.0"

[dependencies.crossbus-derive]
default-features = false
optional = true
version = "0.0.2-a"

[dependencies.futures-core]
default-features = false
version = "0.3.25"

[dependencies.js-sys]
default-features = false
features = []
optional = true
version = "0.3.61"

[dependencies.log]
default-features = false
optional = true
version = "0.4.17"

[dependencies.pin-project-lite]
default-features = false
version = "0.2.9"

[dependencies.tokio]
default-features = false
features = ["rt"]
optional = true
version = "1.26.0"

[dependencies.wasm-bindgen]
default-features = false
features = []
optional = true
version = "0.2.84"

[dependencies.wasm-bindgen-futures]
default-features = false
features = []
optional = true
version = "0.4.34"
[dev-dependencies.futures]
version = "0.3"

[features]
async-std = ["dep:async-std", "derive", "std", "rt"]
core = []
derive = ["dep:crossbus-derive"]
force-poll = []
log = ["dep:log"]
no-std = []
rt = []
std = []
time = []
time-metric = []
tokio = ["dep:tokio", "derive", "std", "rt"]
unstable = []
wasm32 = ["dep:wasm-bindgen-futures", "dep:wasm-bindgen", "dep:js-sys", "derive", "rt"]

[package]
authors = ["hominee"]
categories = ["no-std", "wasm", "embedded", "asynchronous"]
description = "A Platform-Less Runtime-Less Actor Computing Model"
documentation = "https://hominee.github.io/crossbus"
edition = "2021"
homepage = "https://crates.io/crates/crossbus"
keywords = ["actor", "runtime-less", "no-std", "async", "crossbus"]
license = "MIT"
name = "crossbus"
readme = "README.md"
repository = "https://github.com/hominee/crossbus"
version = "0.0.6-a"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "i686-unknown-linux-gnu", "i686-pc-windows-msvc"]
[target."cfg(any(target_arch = \"wasm32\", target_arch = \"wasm64\"))".dev-dependencies.wasm-bindgen-test]
version = "0.3.0"

[target."cfg(any(target_arch = \"wasm32\", target_arch = \"wasm64\"))".dev-dependencies.wasm-logger]
version = "0.2.0"
[target."cfg(not(any(target_arch = \"wasm32\", target_arch = \"wasm64\")))".dev-dependencies.simple_logger]
version = "4.0.0"

[target."cfg(not(any(target_arch = \"wasm32\", target_arch = \"wasm64\")))".dev-dependencies.tokio]
features = ["full"]
version = "1.26"