[dependencies.apalis-core]
version = "1.0.0-beta.2"
[dependencies.apalis-sql]
version = "1.0.0-beta.2"
[dependencies.async-std]
optional = true
version = "1.13.0"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
features = ["serde"]
version = "0.4"
[dependencies.futures]
version = "0.3"
[dependencies.hex]
version = "0.4"
[dependencies.libsql]
version = "0.9"
[dependencies.log]
version = "0.4.21"
[dependencies.pin-project]
version = "1.1.10"
[dependencies.serde]
features = ["derive"]
version = "1"
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2.0.0"
[dependencies.tokio]
features = ["rt", "sync"]
optional = true
version = "1.48.0"
[dependencies.ulid]
version = "1"
[dev-dependencies.apalis]
version = "1.0.0-beta.2"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
features = ["rt-multi-thread", "macros"]
version = "1.48.0"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "turso"
path = "examples/turso.rs"
[features]
async-std-comp = ["async-std"]
default = ["tokio-comp"]
tokio-comp = ["tokio"]
[lib]
name = "apalis_libsql"
path = "src/lib.rs"
[lints.clippy]
manual_let_else = "warn"
match_same_arms = "warn"
match_wildcard_for_single_variants = "warn"
mem_forget = "warn"
must_use_candidate = "warn"
needless_borrow = "warn"
needless_continue = "warn"
needless_pass_by_ref_mut = "warn"
needless_pass_by_value = "warn"
option_option = "warn"
redundant_clone = "warn"
type_complexity = "allow"
[lints.rust]
missing_debug_implementations = "warn"
unreachable_pub = "warn"
unsafe_code = "forbid"
[lints.rust.rust_2018_idioms]
level = "warn"
priority = -1
[package]
authors = ["Apalis Contributors"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["asynchronous", "database"]
description = "Background task processing for rust using apalis and libSQL"
edition = "2024"
keywords = ["apalis", "background-jobs", "task-queue", "libsql", "turso"]
license = "MIT"
name = "apalis-libsql"
readme = "README.md"
repository = "https://github.com/cleverunicornz/apalis-libsql"
version = "0.1.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[[test]]
name = "ack_tests"
path = "tests/ack_tests.rs"
[[test]]
name = "config_tests"
path = "tests/config_tests.rs"
[[test]]
name = "fetcher_tests"
path = "tests/fetcher_tests.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "lib_tests"
path = "tests/lib_tests.rs"
[[test]]
name = "perf_test"
path = "tests/perf_test.rs"
[[test]]
name = "row_tests"
path = "tests/row_tests.rs"
[[test]]
name = "sink_tests"
path = "tests/sink_tests.rs"
[[test]]
name = "turso_cloud"
path = "tests/turso_cloud.rs"