bpm-engine 0.1.0

Lightweight embeddable BPM runtime for long-running, stateful workflows with tokens, timers, Saga compensation, and crash recovery
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "bpm-engine"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lightweight embeddable BPM runtime for long-running, stateful workflows with tokens, timers, Saga compensation, and crash recovery"
homepage = "https://github.com/fanjia1024/bpm-engine"
documentation = "https://docs.rs/bpm-engine"
readme = "README.md"
keywords = [
    "bpm",
    "workflow",
    "engine",
    "process",
    "orchestration",
]
categories = [
    "algorithms",
    "concurrency",
    "data-structures",
]
license = "MIT"
repository = "https://github.com/fanjia1024/bpm-engine"

[lib]
name = "bpm_engine"
path = "src/lib.rs"

[[bin]]
name = "bpm-engine"
path = "src/main.rs"

[[example]]
name = "approval"
path = "examples/approval.rs"

[[example]]
name = "el_gateway"
path = "examples/el_gateway.rs"

[[example]]
name = "exclusive_gateway"
path = "examples/exclusive_gateway.rs"

[[example]]
name = "minimal"
path = "examples/minimal.rs"

[[example]]
name = "parallel_fork_join"
path = "examples/parallel_fork_join.rs"

[[example]]
name = "reject_path"
path = "examples/reject_path.rs"

[[example]]
name = "service_task_chain"
path = "examples/service_task_chain.rs"

[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.uuid]
version = "1.4"
features = ["v4"]