From 8273026615b48d467fef4521045e3952842e6faf Mon Sep 17 00:00:00 2001 From: Svyatoslav Nikolsky Date: Mon, 12 Feb 2018 10:07:25 +0300 Subject: [PATCH 1/2] removed AsciiExt import (fixed warning) --- README.md | 2 +- message/src/common/command.rs | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 3ff7e1fa..1cd43690 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Gitter [![Gitter https://gitter.im/paritytech/parity-bitcoin](https://badges.git Installing `pbtc` from source requires `rustc` and `cargo`. -Minimal supported version is `rustc 1.16.0 (30cf806ef 2017-03-10)` +Minimal supported version is `rustc 1.23.0 (766bd11c8 2018-01-01)` #### Install rustc and cargo diff --git a/message/src/common/command.rs b/message/src/common/command.rs index 2035f6ae..8b11cbb2 100644 --- a/message/src/common/command.rs +++ b/message/src/common/command.rs @@ -1,5 +1,4 @@ use std::{str, fmt}; -use std::ascii::AsciiExt; use hash::H96; use Error; From 78a70ff469fa8162c1c47d001159108ccc3dd0e0 Mon Sep 17 00:00:00 2001 From: Svyatoslav Nikolsky Date: Mon, 12 Feb 2018 10:37:54 +0300 Subject: [PATCH 2/2] updated Dockerfile --- docker/hub/Dockerfile | 2 +- docker/ubuntu/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/hub/Dockerfile b/docker/hub/Dockerfile index 3a69630a..c363b634 100644 --- a/docker/hub/Dockerfile +++ b/docker/hub/Dockerfile @@ -2,7 +2,7 @@ # See https://docs.docker.com/engine/userguide/eng-image/multistage-build/ # Build image -FROM rust:1.21-jessie AS build +FROM rust:1.23-jessie AS build #ENV for build TAG ARG BUILD_TAG diff --git a/docker/ubuntu/Dockerfile b/docker/ubuntu/Dockerfile index 88522dc2..d414af0a 100644 --- a/docker/ubuntu/Dockerfile +++ b/docker/ubuntu/Dockerfile @@ -3,7 +3,7 @@ ### Base Image # Setup up a base image to use in Build and Runtime images -FROM rust:1.21-jessie AS build +FROM rust:1.23-jessie AS build # rustup directory ENV PATH=/root/.cargo/bin:$PATH \