Skip to content

Commit

Permalink
upgrade to libsqlite3-sys 0.28 and related deps (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
dimfeld committed Jul 23, 2024
1 parent 2d7461e commit 0c85eff
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions effectum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ ahash = "0.8.6"
backoff = "0.4.0"
chrono = { version = "0.4.31", default-features = false }
cron = "0.12.0"
deadpool-sqlite = "0.7.0"
deadpool-sqlite = "0.8.1"
eyre = "0.6.8"
futures = "0.3.28"
once_cell = "1.18.0"
rand = "0.8.5"
rusqlite = { version = "0.30.0", features = ["functions", "modern-full", "time", "blob", "array"] }
rusqlite_migration = "1.1.0"
rusqlite = { version = "0.31.0", features = ["functions", "modern-full", "time", "blob", "array"] }
rusqlite_migration = "1.2.0"
serde = { version = "1.0.188", features = ["derive"] }
serde_json = { version = "1.0.107", features = ["raw_value"] }
smallvec = { version = "1.11.1", features = ["serde"] }
Expand Down
2 changes: 1 addition & 1 deletion effectum/src/local_queue.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ impl Queue {
Box::pin(async move {
conn.interact(register_functions)
.await
.map_err(|e| HookError::Message(e.to_string()))?
.map_err(|e| HookError::Message(e.to_string().into()))?
.map_err(|e| HookError::Backend(e))?;
Ok(())
})
Expand Down
2 changes: 1 addition & 1 deletion outbox/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ categories = ["asynchronous"]
effectum = { path = "../effectum" }
futures = "0.3.30"
serde = { version = "1.0.197", features = ["derive"] }
sqlx = { version = "0.7.3", features = ["uuid", "time", "json"] }
sqlx = { version = "0.8.0", features = ["uuid", "time", "json"] }
thiserror = "1.0.57"
time = "0.3.34"
tokio = { version = "1.36.0", features = ["time", "sync"] }
Expand Down

0 comments on commit 0c85eff

Please sign in to comment.