tauri-queue 0.3.0

Tauri integration for agent-queue background job processing
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 = "tauri-queue"
version = "0.3.0"
authors = ["Josh"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Tauri integration for agent-queue background job processing"
readme = "README.md"
keywords = [
    "tauri",
    "queue",
    "jobs",
    "background",
    "async",
]
categories = [
    "asynchronous",
    "database",
]
license = "MIT"

[features]
default = ["sqlite"]
sqlite = []

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

[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"

[[example]]
name = "with_cancellation"
path = "examples/with_cancellation.rs"

[[example]]
name = "with_cooldown"
path = "examples/with_cooldown.rs"

[[example]]
name = "with_persistence"
path = "examples/with_persistence.rs"

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

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

[dependencies.job_queue]
version = "0.2.0"
package = "agent-queue"

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

[dependencies.serde_json]
version = "1"

[dependencies.stack-ids]
version = "0.1.1"

[dependencies.tauri]
version = "2"

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

[dependencies.tracing]
version = "0.1"

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