Skip to content

Commit

Permalink
Fix broken zstd-sys dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
uklotzde committed Apr 2, 2024
1 parent 6100124 commit 67317d5
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 29 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ repos:
args: [--ignore-words=.codespellignore]
exclude: ^search_results\.json|src/ports/web/frontend/login\.rs|ofdb-gateways/src/user_communication/mod\.rs|doc/c4-plantuml/.*\.puml|Cargo.lock|ofdb-gateways/src/user_communication/templates/.*\.txt|ofdb-core/src/usecases/find_duplicates.rs|ofdb-gateways/src/email/sendmail.rs$
- repo: https://github.com/sirosen/check-jsonschema
rev: 0.28.0
rev: 0.28.1
hooks:
- id: check-github-actions
- id: check-github-workflows
Expand Down
53 changes: 27 additions & 26 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 @@ -57,7 +57,7 @@ env_logger = "0.11.3"
log = "0.4.21"
serde = { version = "1.0.197", features = ["derive"] }
time = "0.3.34"
tokio = "1.36.0"
tokio = "1.37.0"
toml = "0.8.12"

[patch.crates-io.geocoding]
Expand Down
3 changes: 3 additions & 0 deletions ofdb-db-tantivy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,6 @@ num-traits = "0.2.18"
parking_lot = "0.12.1"
strum = "0.26.2"
tantivy = "0.21.1"
# TODO: Remove this workaround when the upstream issue has been resolved.
# <https://github.com/gyscos/zstd-rs/issues/270>
zstd-sys = "=2.0.9"
2 changes: 1 addition & 1 deletion ofdb-webserver/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ofdb-entities = { version = "0.12.7", features = ["url"] }
anyhow = "1.0.81"
base64 = { version = "0.22.0", optional = true }
captcha = "0.0.9"
chrono = { version = "0.4.35", default-features = false }
chrono = { version = "0.4.37", default-features = false }
csv = "1.3.0"
icalendar = "0.16.0"
jsonwebtoken = { version = "9.3.0", optional = true }
Expand Down

0 comments on commit 67317d5

Please sign in to comment.