[package]
edition = "2021"
rust-version = "1.88"
name = "synaptic-runnables"
version = "0.2.9"
authors = ["Synaptic Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "LCEL composition: Runnable trait, pipe operator, Lambda, Parallel, Branch, Fallbacks"
homepage = "https://dnw3.github.io/synaptic/"
readme = "README.md"
license = "MIT"
repository = "https://github.com/dnw3/synaptic"
[lib]
name = "synaptic_runnables"
path = "src/lib.rs"
[[test]]
name = "assign_pick"
path = "tests/assign_pick.rs"
[[test]]
name = "bind"
path = "tests/bind.rs"
[[test]]
name = "branch"
path = "tests/branch.rs"
[[test]]
name = "each"
path = "tests/each.rs"
[[test]]
name = "fallback"
path = "tests/fallback.rs"
[[test]]
name = "generator"
path = "tests/generator.rs"
[[test]]
name = "identity"
path = "tests/identity.rs"
[[test]]
name = "lambda"
path = "tests/lambda.rs"
[[test]]
name = "parallel"
path = "tests/parallel.rs"
[[test]]
name = "retry"
path = "tests/retry.rs"
[[test]]
name = "sequence"
path = "tests/sequence.rs"
[[test]]
name = "stream"
path = "tests/stream.rs"
[dependencies.async-stream]
version = "0.3"
[dependencies.async-trait]
version = "0.1"
[dependencies.futures]
version = "0.3"
[dependencies.serde_json]
version = "1.0"
[dependencies.synaptic-core]
version = "0.2"
[dependencies.tokio]
version = "1.41"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
"fs",
]
[dev-dependencies.futures]
version = "0.3"
[dev-dependencies.serde_json]
version = "1.0"
[dev-dependencies.synaptic-core]
version = "0.2"
[dev-dependencies.synaptic-macros]
version = "0.2"
[dev-dependencies.tokio]
version = "1.41"
features = [
"macros",
"rt-multi-thread",
"sync",
"time",
"fs",
]