ferro-queue 0.2.54

Background job queue system for Ferro framework
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 = "ferro-queue"
version = "0.2.54"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Background job queue system for Ferro framework"
readme = "README.md"
keywords = [
    "queue",
    "jobs",
    "background",
    "async",
    "ferro",
]
categories = [
    "database",
    "asynchronous",
]
license = "MIT"
repository = "https://github.com/albertogferrario/ferro"

[features]
postgres-tests = ["sqlx-postgres"]
sqlx-postgres = ["sea-orm/sqlx-postgres"]

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

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

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

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

[dependencies.async-trait]
version = "0.1"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.futures]
version = "0.3"

[dependencies.parking_lot]
version = "0.12"

[dependencies.rand]
version = "0.8"

[dependencies.sea-orm]
version = "1.0"
features = [
    "sqlx-sqlite",
    "sqlx-postgres",
    "runtime-tokio-native-tls",
    "macros",
]

[dependencies.sea-orm-migration]
version = "1.0"

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

[dependencies.serde_json]
version = "1"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = [
    "sync",
    "rt",
    "time",
    "macros",
    "signal",
]

[dependencies.tracing]
version = "0.1"

[dependencies.uuid]
version = "1"
features = [
    "v4",
    "serde",
]

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

[dev-dependencies.tempfile]
version = "3"

[dev-dependencies.tokio]
version = "1"
features = [
    "full",
    "test-util",
]