rx-rust 1.0.1

Reactive Programming in Rust inspired by ReactiveX https://reactivex.io/
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"
rust-version = "1.88.0"
name = "rx-rust"
version = "1.0.1"
build = false
include = [
    "src/**",
    "Cargo.toml",
    "LICENSE",
    "README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reactive Programming in Rust inspired by ReactiveX https://reactivex.io/"
readme = "README.md"
keywords = [
    "reactive",
    "rx",
    "reactivex",
    "observable",
    "stream",
]
categories = [
    "asynchronous",
    "rust-patterns",
]
license = "MIT"
repository = "https://github.com/623637646/rx-rust"

[package.metadata.docs.rs]
features = ["tokio-scheduler"]

[features]
async-std-scheduler = [
    "futures",
    "dep:async-std",
]
default = []
local-pool-scheduler = [
    "single-threaded",
    "futures",
    "dep:async-io",
]
single-threaded = []
smol-scheduler = [
    "futures",
    "dep:smol",
]
thread-pool-scheduler = [
    "futures/thread-pool",
    "dep:async-io",
]
tokio-scheduler = [
    "futures",
    "dep:tokio",
    "tokio/rt",
    "tokio/time",
]

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

[dependencies.async-io]
version = "2"
optional = true

[dependencies.async-std]
version = "1"
optional = true

[dependencies.cfg-if]
version = "1"

[dependencies.educe]
version = "0.6"

[dependencies.futures]
version = "0.3.34"
optional = true

[dependencies.smol]
version = "2"
optional = true

[dependencies.tokio]
version = "1"
optional = true

[dev-dependencies.async-io]
version = "2"

[dev-dependencies.pastey]
version = "0.1"

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