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