[package]
edition = "2021"
rust-version = "1.75"
name = "rust-pipe"
version = "0.1.0"
build = false
include = [
"src/**/*",
"examples/**/*",
"tests/**/*",
"Cargo.toml",
"LICENSE-*",
"README.md",
"CHANGELOG.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lightweight typed task dispatch from Rust to polyglot workers (TypeScript, Python, Go, Java, C#, Ruby, Elixir, Swift, PHP)"
homepage = "https://github.com/albyte-ai/rust-pipe"
documentation = "https://docs.rs/rust-pipe"
readme = "README.md"
keywords = [
"dispatch",
"polyglot",
"orchestration",
"workers",
"cross-language",
]
categories = [
"asynchronous",
"network-programming",
"concurrency",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/albyte-ai/rust-pipe"
[lib]
name = "rust_pipe"
path = "src/lib.rs"
[[example]]
name = "basic_dispatch"
path = "examples/basic_dispatch.rs"
[[test]]
name = "dispatch"
path = "tests/dispatch.rs"
[[test]]
name = "schema"
path = "tests/schema.rs"
[[test]]
name = "transport"
path = "tests/transport.rs"
[[test]]
name = "worker"
path = "tests/worker.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.dashmap]
version = "6"
[dependencies.futures-util]
version = "0.3"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-tungstenite]
version = "0.24"
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = [
"v4",
"serde",
]
[dev-dependencies.anyhow]
version = "1"
[dev-dependencies.serial_test]
version = "3.4.0"
[dev-dependencies.tokio-test]
version = "0.4"
[dev-dependencies.tracing-subscriber]
version = "0.3"