Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for build failure due to change in TypeId hash size (64 to 128 bits) in Rust 1.72.0. #194

Merged
merged 2 commits into from
Aug 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 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 docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build binary
FROM rust:1.71.0-bookworm AS workspace
FROM rust:1-bookworm AS workspace

RUN rustup component add rustfmt && \
apt update && apt install -y libglib2.0-dev libssl-dev libclang-dev python3 protobuf-compiler libprotobuf-dev
Expand Down
2 changes: 1 addition & 1 deletion gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ schema = { path = "../schema" }
polylang = { git = "https://github.com/polybase/polylang", branch = "main" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
v8 = "0.62.2"
v8 = "0.75.1"
thiserror = "1.0"
async-recursion = "1.0.2"
tracing = "0.1.37"
Expand Down