dewit 0.0.1

Define scheduling and execution of code separately from data flow
Documentation
[package]
name = "dewit"
version = "0.0.1"
license = "Apache-2.0 OR MIT"

description = "Define scheduling and execution of code separately from data flow"
documentation = "https://docs.rs/dewit/"
exclude = ["/.jj/*"]

edition = "2024"

[dependencies]
futures = { version = "0.3", optional = true, default-features = false }
pollster = { version = "0.4", optional = true }
rayon = { version = "1.11", optional = true }

[dev-dependencies]
tokio = { version = "1.48", features = ["full"] }

[features]
default = ["async", "blocking", "rayon"]
alloc = ["futures?/alloc"]
std = ["futures?/std"]

async = ["alloc", "dep:futures"]
blocking = ["alloc", "std", "dep:pollster"]
rayon = ["alloc", "std", "dep:rayon"]

# [hints]
# mostly-unused = true