fluxion-exec 0.7.0

Async stream subscribers and execution utilities for fluxion
Documentation
[dependencies.async-trait]
version = "0.1.89"

[dependencies.event-listener]
default-features = false
version = "5.4"

[dependencies.fluxion-core]
default-features = false
features = ["alloc"]
version = "0.7.0"

[dependencies.futures]
default-features = false
features = ["alloc", "alloc", "async-await"]
version = "0.3.31"

[dependencies.futures-util]
default-features = false
features = ["alloc", "alloc"]
version = "0.3.31"

[dependencies.tokio]
default-features = false
features = ["macros", "time", "rt-multi-thread", "rt", "sync", "macros"]
optional = true
version = "1.48.0"

[dependencies.tracing]
default-features = false
optional = true
version = "0.1.44"

[features]
alloc = ["fluxion-core/alloc"]
default = ["std", "runtime-tokio"]
runtime-async-std = ["std", "fluxion-core/runtime-async-std"]
runtime-smol = ["std", "fluxion-core/runtime-smol"]
runtime-tokio = ["std", "dep:tokio", "fluxion-core/runtime-tokio"]
std = ["fluxion-core/std", "futures/std", "event-listener/std"]

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

[package]
authors = ["umberto.gotti@umbertogotti.dev"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["asynchronous", "concurrency"]
description = "Async stream subscribers and execution utilities for fluxion"
edition = "2021"
keywords = ["async", "stream", "reactive", "subscribe", "executor"]
license = "Apache-2.0"
name = "fluxion-exec"
readme = "README.md"
repository = "https://github.com/umbgtt10/fluxion"
version = "0.7.0"

[target.'cfg(not(target_os = "none"))'.dev-dependencies.anyhow]
version = "1.0.100"

[target.'cfg(not(target_os = "none"))'.dev-dependencies.fluxion-test-utils]
version = "0.7.0"

[target.'cfg(not(target_os = "none"))'.dev-dependencies.thiserror]
version = "2.0.17"

[target.'cfg(not(target_os = "none"))'.dev-dependencies.tokio-stream]
features = ["sync"]
version = "0.1.17"

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

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

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

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