computation-process 0.2.0

A Rust library for defining stateful computations (and generators) that support suspend/resume, interleaving, cancellation and serialization.
Documentation
[package]
name = "computation-process"
version = "0.2.0"
edition = "2024"
authors = ["Samuel Pastva <daemontus@gmail.com>"]
rust-version = "1.88.0"
description = "A Rust library for defining stateful computations (and generators) that support suspend/resume, interleaving, cancellation and serialization."
documentation = "https://docs.rs/computation-process"
homepage = "https://github.com/daemontus/computation-process"
repository = "https://github.com/daemontus/computation-process"
readme = "README.md"
keywords = ["computation", "state-machine", "suspend", "cancellation", "cooperative"]
categories = ["algorithms", "concurrency"]
license = "MIT"

[features]
serde = ["dep:serde"]

[dependencies]
cancel-this = "0.4.0"
serde = { version = "1.0", features = ["derive"], optional = true }

[dev-dependencies]
serde_json = "1.0.148"