[package]
edition = "2024"
name = "dataflow-rs"
version = "2.0.4"
authors = ["Plasmatic Engineering <shankar@goplasmatic.io>"]
build = false
exclude = [
".DS_Store",
"/target",
".vscode",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A lightweight, rule-driven workflow engine for building powerful data processing pipelines and nanoservices in Rust. Extend it with your custom tasks to create robust, maintainable services."
homepage = "https://github.com/GoPlasmatic/dataflow-rs"
readme = "README.md"
keywords = [
"workflow",
"engine",
"rule-engine",
"orchestration",
"nanoservice",
]
categories = [
"data-structures",
"development-tools",
"parsing",
]
license = "Apache-2.0"
repository = "https://github.com/GoPlasmatic/dataflow-rs"
[lib]
name = "dataflow_rs"
path = "src/lib.rs"
[[example]]
name = "async_migration"
path = "examples/async_migration.rs"
[[example]]
name = "benchmark"
path = "examples/benchmark.rs"
[[example]]
name = "complete_workflow"
path = "examples/complete_workflow.rs"
[[example]]
name = "custom_function"
path = "examples/custom_function.rs"
[[example]]
name = "map_performance_test"
path = "examples/map_performance_test.rs"
[[test]]
name = "workflow_engine_test"
path = "tests/workflow_engine_test.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.datalogic-rs]
version = "4.0"
[dependencies.log]
version = "0.4"
[dependencies.quick-xml]
version = "0.37"
features = ["serialize"]
[dependencies.serde]
version = "1.0"
features = [
"derive",
"rc",
]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1"
features = [
"sync",
"rt",
"macros",
]
[dependencies.uuid]
version = "1.19"
features = ["v4"]
[dev-dependencies.axum]
version = "0.8"
[dev-dependencies.env_logger]
version = "0.11"
[dev-dependencies.futures]
version = "0.3"
[dev-dependencies.num_cpus]
version = "1.17"
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"test-util",
]
[target.'cfg(not(target_arch = "wasm32"))'.dependencies.tokio]
version = "1"
features = ["rt-multi-thread"]
[target.'cfg(target_arch = "wasm32")'.dependencies.chrono]
version = "0.4"
features = [
"clock",
"std",
"wasmbind",
]
default-features = false
[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom]
version = "0.3"
features = ["wasm_js"]
[target.'cfg(target_arch = "wasm32")'.dependencies.uuid]
version = "1.19"
features = [
"v4",
"js",
]
[profile.release]
opt-level = "s"
lto = true