Skip to content

Commit 47d28a5

Browse files
authored
chore: bump to 1.0.0-alpha.4 (#12)
1 parent b2d052a commit 47d28a5

2 files changed

Lines changed: 8 additions & 5 deletions

File tree

Cargo.toml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
[package]
22
name = "apalis-sqlite"
3-
version = "1.0.0-alpha.3"
3+
version = "1.0.0-alpha.4"
44
authors = ["Njuguna Mureithi <mureithinjuguna@gmail.com>"]
55
readme = "README.md"
66
edition = "2024"
77
repository = "https://github.com/apalis-dev/apalis-sqlite"
88
license = "MIT"
99
description = "Background task processing for rust using apalis and sqlite"
10+
keywords = ["apalis", "background-jobs", "task-queue", "sqlite", "async"]
11+
categories = ["asynchronous", "database"]
1012

1113
[features]
1214
default = ["migrate", "json"]
@@ -25,8 +27,8 @@ features = ["chrono", "sqlite"]
2527
[dependencies]
2628
serde = { version = "1", features = ["derive"] }
2729
serde_json = { version = "1" }
28-
apalis-core = { version = "1.0.0-alpha.7", features = ["sleep"] }
29-
apalis-sql = { version = "1.0.0-alpha.7" }
30+
apalis-core = { version = "1.0.0-alpha.8", features = ["sleep"] }
31+
apalis-sql = { version = "1.0.0-alpha.8" }
3032
log = "0.4.21"
3133
futures = "0.3.30"
3234
tokio = { version = "1", features = ["rt", "net"], optional = true }
@@ -40,7 +42,7 @@ bytes = "1.1.0"
4042

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

src/ack.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use ulid::Ulid;
1212

1313
use crate::SqliteTask;
1414

15-
#[derive(Clone)]
15+
#[derive(Clone, Debug)]
1616
pub struct SqliteAck {
1717
pool: SqlitePool,
1818
}
@@ -99,6 +99,7 @@ pub async fn lock_task(
9999
Ok(())
100100
}
101101

102+
#[derive(Clone, Debug)]
102103
pub struct LockTaskLayer {
103104
pool: SqlitePool,
104105
}

0 commit comments

Comments
 (0)