Skip to content

Commit

Permalink
Update Solana to 1.9.4
Browse files Browse the repository at this point in the history
Change-Id: I9c1ce5f25b21ca81599957a7faa730558d8fc03e
  • Loading branch information
hendrikhofstadt authored and evan-gray committed Feb 2, 2022
1 parent 79ab522 commit 7edbbd3
Show file tree
Hide file tree
Showing 35 changed files with 6,238 additions and 4,405 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.client
Expand Up @@ -5,7 +5,7 @@ RUN apt-get update && apt-get install -yq libssl-dev libudev-dev pkg-config zlib
RUN curl -fsSL https://deb.nodesource.com/setup_16.x | bash - && apt-get install -y nodejs
RUN curl -sSfL https://release.solana.com/v1.8.1/install | sh

RUN rustup default nightly-2021-08-01
RUN rustup default nightly-2022-01-02
RUN rustup component add rustfmt

RUN --mount=type=cache,target=/root/.cache \
Expand Down
4 changes: 2 additions & 2 deletions sdk/rust/sdk/Cargo.toml
Expand Up @@ -31,13 +31,13 @@ opt-level = 3
lto = "thin"

[dependencies]
borsh = { version="0.8.1" }
borsh = { version="=0.9.1" }
nom = { version="7", default-features=false, features=["alloc"] }
primitive-types = { version = "0.9.0", default-features = false }
wormhole-core = { path="../core", version="0.1.0" }

# Solana Specific
solana-program = { version="1.7.0", optional=true }
solana-program = { version="=1.9.4", optional=true }

# Terra Specific
cosmwasm-std = { version = "0.16.0", optional=true }
Expand Down
4 changes: 2 additions & 2 deletions solana/Dockerfile
Expand Up @@ -12,9 +12,9 @@ RUN apt-get update && \
&& \
rm -rf /var/lib/apt/lists/* && \
rustup component add rustfmt && \
rustup default nightly-2021-08-01
rustup default nightly-2022-01-02

RUN sh -c "$(curl -sSfL https://release.solana.com/v1.8.1/install)"
RUN sh -c "$(curl -sSfL https://release.solana.com/v1.9.4/install)"

ENV PATH="/root/.local/share/solana/install/active_release/bin:$PATH"

Expand Down
2 changes: 1 addition & 1 deletion solana/Dockerfile.wasm
Expand Up @@ -3,7 +3,7 @@ FROM docker.io/library/rust:1.49@sha256:a50165ea96983c21832578afb1c8c028674c965b

RUN apt-get update && apt-get install -y libssl-dev libudev-dev pkg-config zlib1g-dev llvm clang
RUN rustup component add rustfmt
RUN rustup default nightly-2021-08-01
RUN rustup default nightly-2022-01-02

WORKDIR /usr/src/bridge

Expand Down

0 comments on commit 7edbbd3

Please sign in to comment.