Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
[package]
name = "apalis-sqlite"
version = "1.0.0-alpha.3"
version = "1.0.0-alpha.4"
authors = ["Njuguna Mureithi <mureithinjuguna@gmail.com>"]
readme = "README.md"
edition = "2024"
repository = "https://github.com/apalis-dev/apalis-sqlite"
license = "MIT"
description = "Background task processing for rust using apalis and sqlite"
keywords = ["apalis", "background-jobs", "task-queue", "sqlite", "async"]
categories = ["asynchronous", "database"]

[features]
default = ["migrate", "json"]
Expand All @@ -25,8 +27,8 @@ features = ["chrono", "sqlite"]
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1" }
apalis-core = { version = "1.0.0-alpha.7", features = ["sleep"] }
apalis-sql = { version = "1.0.0-alpha.7" }
apalis-core = { version = "1.0.0-alpha.8", features = ["sleep"] }
apalis-sql = { version = "1.0.0-alpha.8" }
log = "0.4.21"
futures = "0.3.30"
tokio = { version = "1", features = ["rt", "net"], optional = true }
Expand All @@ -40,7 +42,7 @@ bytes = "1.1.0"

[dev-dependencies]
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
apalis-core = { version = "1.0.0-alpha.7", features = ["test-utils"] }
apalis-core = { version = "1.0.0-alpha.8", features = ["test-utils"] }
apalis-sqlite = { path = ".", features = ["migrate", "tokio-comp"] }
apalis-workflow = { version = "0.1.0-alpha.5" }

Expand Down
3 changes: 2 additions & 1 deletion src/ack.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ use ulid::Ulid;

use crate::SqliteTask;

#[derive(Clone)]
#[derive(Clone, Debug)]
pub struct SqliteAck {
pool: SqlitePool,
}
Expand Down Expand Up @@ -99,6 +99,7 @@ pub async fn lock_task(
Ok(())
}

#[derive(Clone, Debug)]
pub struct LockTaskLayer {
pool: SqlitePool,
}
Expand Down
Loading