outbox-pattern-processor 0.4.0

Library to make easier to dispatch your outbox-pattern data from database to SQS, SNS and/or HTTP(S) gateways
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 = "2021"
name = "outbox-pattern-processor"
version = "0.4.0"
authors = ["Diogo Deroldo <diogoderoldo@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Library to make easier to dispatch your outbox-pattern data from database to SQS, SNS and/or HTTP(S) gateways"
homepage = "https://github.com/deroldo/outbox-pattern-processor"
readme = "README.md"
keywords = [
    "outbox",
    "outbox-pattern",
    "outbox-table",
    "outbox-event",
]
categories = ["web-programming"]
license = "MIT"
repository = "https://github.com/deroldo/outbox-pattern-processor"

[features]
default = [
    "dep:tokio",
    "dep:tracing",
    "dep:aws-sdk-sqs",
    "dep:aws-sdk-sns",
    "dep:aws-config",
    "dep:reqwest",
    "dep:reqwest-middleware",
    "dep:serde",
    "dep:serde_json",
    "dep:sqlx",
    "dep:uuid",
    "dep:regex",
    "dep:cron",
]

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

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

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

[dependencies.aws-config]
version = "1.5.7"
features = ["behavior-version-latest"]
optional = true

[dependencies.aws-sdk-sns]
version = "1.45.0"
optional = true

[dependencies.aws-sdk-sqs]
version = "1.44.0"
optional = true

[dependencies.cron]
version = "0.12.1"
optional = true

[dependencies.regex]
version = "1.11.0"
optional = true

[dependencies.reqwest]
version = "0.12.8"
features = [
    "json",
    "rustls-tls",
]
optional = true
default-features = false

[dependencies.reqwest-middleware]
version = "0.3.3"
optional = true

[dependencies.serde]
version = "1.0.210"
features = ["derive"]
optional = true

[dependencies.serde_json]
version = "1.0.128"
features = ["preserve_order"]
optional = true

[dependencies.sqlx]
version = "0.9.0"
features = [
    "runtime-tokio",
    "tls-rustls",
    "postgres",
    "chrono",
    "uuid",
    "rust_decimal",
    "migrate",
]
optional = true

[dependencies.tokio]
version = "1.40.0"
features = ["full"]
optional = true

[dependencies.tracing]
version = "0.1.40"
optional = true

[dependencies.uuid]
version = "1.10.0"
features = [
    "v4",
    "v7",
    "serde",
]
optional = true

[dev-dependencies.rand]
version = "0.8.5"

[dev-dependencies.serial_test]
version = "3.1.1"

[dev-dependencies.test-context]
version = "0.3.0"

[dev-dependencies.wiremock]
version = "0.6.2"