changeset-saga 0.0.2

Saga pattern for atomic multi-step operations
Documentation
# 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 = "2024"
rust-version = "1.85.0"
name = "changeset-saga"
version = "0.0.2"
authors = ["Lukas Wagner <appdev.lukaswagner@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Saga pattern for atomic multi-step operations"
homepage = "https://github.com/lukidoescode/cargo-changeset"
readme = "README.md"
keywords = [
    "saga",
    "transaction",
    "rollback",
    "atomic",
]
categories = ["rust-patterns"]
license = "MIT"
repository = "https://github.com/lukidoescode/cargo-changeset"
resolver = "2"

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

[[test]]
name = "audit_log"
path = "tests/audit_log.rs"

[[test]]
name = "compensation"
path = "tests/compensation.rs"

[[test]]
name = "compensation_failure"
path = "tests/compensation_failure.rs"

[[test]]
name = "conditional_steps"
path = "tests/conditional_steps.rs"

[[test]]
name = "data_flow"
path = "tests/data_flow.rs"

[dependencies.thiserror]
version = "2.0.18"

[dev-dependencies.anyhow]
version = "1.0"

[lints.clippy]
needless_pass_by_value = "allow"
struct_excessive_bools = "allow"
type_complexity = "allow"
unwrap_used = "deny"

[lints.clippy.pedantic]
level = "warn"
priority = -1