[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"]