[package]
edition = "2024"
name = "obix"
version = "0.2.12"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Implementation of outbox backed by PG / sqlx"
documentation = "https://docs.rs/obix"
readme = "README.md"
categories = ["database"]
license = "Apache-2.0"
repository = "https://github.com/GaloyMoney/obix"
resolver = "2"
[features]
default = ["default-tables"]
default-tables = []
fail-on-warnings = ["obix-macros/fail-on-warnings"]
test-utils = ["tokio/time"]
tracing = [
"es-entity/tracing-context",
"obix-macros/tracing",
]
[lib]
name = "obix"
path = "src/lib.rs"
[[bin]]
name = "obix"
path = "src/main.rs"
[[test]]
name = "helpers"
path = "tests/helpers.rs"
[[test]]
name = "inbox"
path = "tests/inbox.rs"
[[test]]
name = "outbox"
path = "tests/outbox.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = [
"clock",
"serde",
]
default-features = false
[dependencies.derive_builder]
version = "0.20"
[dependencies.es-entity]
version = "0.10"
[dependencies.futures]
version = "0.3"
[dependencies.im]
version = "15.1"
features = ["serde"]
[dependencies.job]
version = "0.6"
[dependencies.obix-macros]
version = "0.2.12"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sqlx]
version = "0.8"
features = [
"macros",
"runtime-tokio-rustls",
"postgres",
"uuid",
"chrono",
"json",
]
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.48"
features = [
"rt-multi-thread",
"macros",
]
[dependencies.tokio-stream]
version = "0.1"
features = ["sync"]
[dev-dependencies.anyhow]
version = "1.0"
[dev-dependencies.serial_test]
version = "3"
features = ["file_locks"]