Skip to content

Commit

Permalink
Fix cargo build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
wshino committed Oct 20, 2024
1 parent 848b2bf commit 4f0b4eb
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion Relayer.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# Use the base image
FROM sorasue/relayer-base:latest
FROM sorasue/relayer:latest

# Copy the project files
COPY packages/relayer /relayer/packages/relayer

# Copy the rust-toolchain.toml file
COPY rust-toolchain.toml /relayer/packages/relayer/rust-toolchain.toml

# Set the working directory for the Rust project
WORKDIR /relayer/packages/relayer

Expand Down
6 changes: 3 additions & 3 deletions packages/relayer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,9 @@ ff = { version = "0.13.0", default-features = false, features = ["std"] }
async-trait = "0.1.36"
handlebars = "4.4.0"
graphql_client = { version = "0.13.0", features = ["reqwest"] }
ic-utils = { version = "0.30.0" }
ic-agent = { version = "0.30.0", features = ["pem", "reqwest"] }
candid = "0.9.11"
ic-utils = { version = "0.39.0" }
ic-agent = { version = "0.39.0", features = ["pem"] }
candid = "0.10.10"
lazy_static = "1.4"
function_name = "0.3.0"
base64 = "0.21.7"
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
[toolchain]
channel = "1.73.0"
channel = "1.75.0"
components = ["rustfmt"]

0 comments on commit 4f0b4eb

Please sign in to comment.