[package]
edition = "2024"
rust-version = "1.88"
name = "pipecrab-runtime"
version = "0.6.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Runtime-agnostic async orchestration for pipecrab: Inbound, Outbound. Built on futures."
readme = false
license = "MIT"
repository = "https://github.com/SheaHawkins/pipecrab"
resolver = "2"
[package.metadata.pipecrab]
layer = "runtime"
[lib]
name = "pipecrab_runtime"
path = "src/lib.rs"
[[test]]
name = "flush"
path = "tests/flush.rs"
[[test]]
name = "mailbox_alloc"
path = "tests/mailbox_alloc.rs"
[[test]]
name = "mailbox_behavior"
path = "tests/mailbox_behavior.rs"
[[test]]
name = "offload"
path = "tests/offload.rs"
[[test]]
name = "outbound"
path = "tests/outbound.rs"
[[test]]
name = "pipeline"
path = "tests/pipeline.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.futures]
version = "0.3"
[dependencies.pipecrab-core]
version = "0.6.0"
[dev-dependencies]