transactor 0.1.4

A toy (yet intentionally robust) transaction processing engine and accounting system with support for deposits, withdrawals, disputes, resolutions and chargebacks.
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"
name = "transactor"
version = "0.1.4"
authors = ["Adan SdPC <adan@witnet.foundation>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A toy (yet intentionally robust) transaction processing engine and accounting system with support for deposits, withdrawals, disputes, resolutions and chargebacks."
readme = "README.md"
keywords = [
    "transaction",
    "deposit",
    "withdrawal",
    "account",
    "balance",
]
license-file = "LICENSE"
repository = "https://github.com/aesedepece/transactor"

[features]
deterministic = []

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

[[bin]]
name = "transactor"
path = "src/main.rs"

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

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

[dependencies.csv]
version = "1.4.0"

[dependencies.env_logger]
version = "0.11.9"

[dependencies.fixed]
version = "1.30.0"
features = ["serde-str"]

[dependencies.indexmap]
version = "2.13.0"

[dependencies.log]
version = "0.4.29"

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

[dependencies.thiserror]
version = "2.0.18"

[dev-dependencies.tokio]
version = "1.50.0"
features = ["full"]