Skip to content

Commit

Permalink
Update diesel dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
uklotzde committed Jan 31, 2025
1 parent 1c77a8c commit 97a1a4e
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 24 deletions.
15 changes: 8 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,6 @@ repos:
stages:
# Differs from default_stages (see above)
- commit-msg
- repo: https://github.com/DavidAnson/markdownlint-cli2
rev: v0.17.2
hooks:
- id: markdownlint-cli2
exclude: ^LICENSE\.md$
- repo: https://github.com/shellcheck-py/shellcheck-py
rev: v0.10.0.1
hooks:
Expand All @@ -63,14 +58,19 @@ repos:
- id: codespell
# JSON
- repo: https://github.com/sirosen/check-jsonschema
rev: 0.31.0
rev: 0.31.1
hooks:
- id: check-github-actions
- id: check-github-workflows
# Markdown
- repo: https://github.com/DavidAnson/markdownlint-cli2
rev: v0.17.2
hooks:
- id: markdownlint-cli2
exclude: ^LICENSE\.md$
# TODO: Remove unmaintained Prettier plugin.
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.1.0
rev: v4.0.0-alpha.8
hooks:
- id: prettier
types_or:
Expand All @@ -91,6 +91,7 @@ repos:
rev: v5.0.2
hooks:
- id: reuse
# Rust
- repo: https://github.com/doublify/pre-commit-rust
rev: v1.0
hooks:
Expand Down
39 changes: 24 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ anyhow = "1.0.95"
bitflags = "2.8.0"
data-encoding = "2.7.0"
derive_more = "1.0.0"
diesel = { version = "2.2.6", default-features = false, features = ["sqlite"] }
diesel = { version = "2.2.7", default-features = false, features = ["sqlite"] }
digest = "0.10.7"
image = "0.25.5"
jiff = "0.1.28"
Expand Down
2 changes: 1 addition & 1 deletion crates/storage-sqlite/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ serde = { workspace = true, optional = true, features = ["derive"] }
# Feature "sqlite-bundled"
# Bundle SQLite code to prevent dynamic linking.
# The pinned version must be compatible with diesel!
libsqlite3-sys = { version = "=0.30.1", optional = true, default-features = false, features = [
libsqlite3-sys = { version = "=0.31.0", optional = true, default-features = false, features = [
"bundled",
] }

Expand Down

0 comments on commit 97a1a4e

Please sign in to comment.