mirror of
https://github.com/trailbaseio/trailbase
synced 2026-04-21 13:37:44 +00:00
43 lines
1.1 KiB
TOML
43 lines
1.1 KiB
TOML
[package]
|
|
name = "trailbase-apalis"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
publish = false
|
|
|
|
license = "OSL-3.0"
|
|
description = "SQLite SQL storage for Apalis' background job processing"
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[dependencies]
|
|
apalis-core = { version = "0.7.0", default-features = false, features = [
|
|
"sleep",
|
|
"json",
|
|
] }
|
|
async-std = { version = "1.13.0", optional = true }
|
|
async-stream = "0.3.5"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
futures = "0.3.30"
|
|
futures-lite = "2.3.0"
|
|
log = "0.4.21"
|
|
rusqlite = { workspace = true }
|
|
rust-embed = { workspace = true }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
thiserror = "2.0.12"
|
|
tokio = { workspace = true }
|
|
trailbase-refinery = { workspace = true }
|
|
trailbase-sqlite = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
apalis = { version = "0.7.0" }
|
|
apalis-core = { version = "0.7.0", default-features = false, features = [ "test-utils" ] }
|
|
email_address = "0.2.9"
|
|
once_cell = "1.19.0"
|
|
tokio = { workspace = true }
|
|
|
|
[package.metadata.docs.rs]
|
|
# defines the configuration attribute `docsrs`
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
all-features = true
|