azums-core 0.2.0

Zero-dependency core traits, models, and QueueError for azums
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"
rust-version = "1.75"
name = "azums-core"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Zero-dependency core traits, models, and QueueError for azums"
homepage = "https://github.com/BlockForge-Dev/azums"
documentation = "https://docs.rs/azums-core"
readme = "README.md"
keywords = [
    "job-queue",
    "background-jobs",
    "task-queue",
    "storage-backend",
    "no-std",
]
categories = [
    "asynchronous",
    "no-std",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/BlockForge-Dev/azums"

[features]
alloc = ["serde/alloc"]
default = ["std"]
sqlx = ["dep:sqlx"]
std = [
    "serde/std",
    "chrono/std",
    "uuid/std",
    "thiserror/std",
]

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

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

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

[dependencies.anyhow]
version = "1"

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

[dependencies.chrono]
version = "0.4"
features = [
    "serde",
    "clock",
]
default-features = false

[dependencies.futures-core]
version = "0.3"

[dependencies.serde]
version = "1"
features = ["derive"]
default-features = false

[dependencies.serde_json]
version = "1"

[dependencies.sqlx]
version = "0.7"
features = [
    "runtime-tokio-rustls",
    "postgres",
    "sqlite",
    "uuid",
    "chrono",
    "json",
]
optional = true

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = ["sync"]

[dependencies.tokio-stream]
version = "0.1"
features = ["sync"]

[dependencies.tokio-util]
version = "0.7"

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

[dev-dependencies.proptest]
version = "1"

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