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 04840df
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 32 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
2 changes: 1 addition & 1 deletion ofdb-application/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ csv = "1.3.0"
log = "0.4.21"
pwhash = "1.0.0"
r2d2 = ">=0.8.10,<0.9" # TODO: remove
serde_json = "1.0.114"
serde_json = "1.0.115"
thiserror = "1.0.58"
time = "0.3.34"

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-frontend-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ rust-version.workspace = true
[dependencies]
percent-encoding = "2.3.1"
serde = "1.0.197"
serde_json = "1.0.114"
serde_json = "1.0.115"
thiserror = "1.0.58"

[dependencies.gloo-net]
Expand Down
4 changes: 2 additions & 2 deletions 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 All @@ -32,7 +32,7 @@ rust-embed = "8.3.0"
rocket = { version = "0.5.0", features = ["secrets", "json"] }
rocket_cors = "0.6.0"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
serde_json = "1.0.115"
time = { version = "0.3.34", features = ["macros", "formatting"] }
thiserror = "1.0.58"
uuid = { version = "1.8.0", features = ["v4"] }
Expand Down

0 comments on commit 04840df

Please sign in to comment.