Skip to content

Commit

Permalink
Bump up deps
Browse files Browse the repository at this point in the history
  • Loading branch information
olegnn committed Oct 3, 2023
1 parent 501c67f commit 1ecb69e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
# rustup directory
ENV PATH /root/.cargo/bin:$PATH

ARG stable='stable-2023-03-09'
ARG nightly='nightly-2023-03-09'

# setup rust nightly channel, pinning specific version as newer versions have a regression
# setup rust stable and nightly channels, pinning specific version as newer versions have a regression
RUN rustup install $stable
RUN rustup install $nightly

RUN rustup install stable

# install wasm toolchain for substrate
RUN rustup target add wasm32-unknown-unknown --toolchain $nightly

Expand All @@ -45,11 +45,11 @@ ARG release

RUN if [ "$release" = "Y" ] ; then \
echo 'Building in release mode.' ; \
cargo +$nightly build --profile=release $features ; \
WASM_BUILD_TOOLCHAIN=$nightly cargo +$stable build --profile=release $features ; \
mv /dock-node/target/release/dock-node /dock-node/target/; \
else \
echo 'Building in production mode.' ; \
cargo +$nightly build --profile=production $features ; \
WASM_BUILD_TOOLCHAIN=$nightly cargo +$stable build --profile=production $features ; \
mv /dock-node/target/production/dock-node /dock-node/target/; \
fi

Expand Down
4 changes: 2 additions & 2 deletions node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ authors = ["Dock.io"]
build = "build.rs"
edition = "2021"
name = "dock-node"
version = "0.23.0"
version = "0.24.0"

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
Expand All @@ -28,7 +28,7 @@ optional = true

[dependencies.dock-runtime]
path = "../runtime"
version = "0.23.0"
version = "0.24.0"

[dependencies.beefy-primitives]
git = "https://github.com/paritytech/substrate.git"
Expand Down
2 changes: 1 addition & 1 deletion runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["Dock.io"]
edition = "2021"
name = "dock-runtime"
version = "0.23.0"
version = "0.24.0"
license = "Apache-2.0"

[package.metadata.docs.rs]
Expand Down

0 comments on commit 1ecb69e

Please sign in to comment.