Skip to content

Commit 57b22b6

Browse files
authored
Adjust MSRV, fix VDR Proxy Build (#1324)
* fix missed 1.79 -> 1.84.1 rust version Signed-off-by: James Ebert <[email protected]> * adjust proxy dockerfile Indy VDR version Signed-off-by: James Ebert <[email protected]> * chore: adjust MSRV to 1.81 Signed-off-by: James Ebert <[email protected]> --------- Signed-off-by: James Ebert <[email protected]>
1 parent 74621af commit 57b22b6

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/ci/vdrproxy.dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN apk update && apk upgrade && \
1818
USER indy
1919
WORKDIR /home/indy
2020

21-
ARG RUST_VER="1.79.0"
21+
ARG RUST_VER="1.84.1"
2222
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain $RUST_VER --default-host x86_64-unknown-linux-musl
2323

2424
ENV PATH="/home/indy/.cargo/bin:$PATH"
@@ -32,7 +32,7 @@ RUN apk update && apk upgrade && \
3232
USER indy
3333
RUN git clone https://github.com/hyperledger/indy-vdr.git
3434
WORKDIR /home/indy/indy-vdr/indy-vdr-proxy
35-
RUN git checkout c143268
35+
RUN git checkout b4dc08b
3636
RUN cargo build --release
3737

3838
FROM alpine:3.18

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ authors = [
4242
description = "Library to work with Aries protocols & collection of supporting components"
4343
license = "Apache-2.0"
4444
edition = "2021"
45-
rust-version = "1.79"
45+
rust-version = "1.81"
4646

4747
[profile.release]
4848
debug = 0

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ There's 2 best way to reach us:
4848
- We bump minor version on releases containing new features, significant refactors or breaking changes.
4949
- We bump patch version if release only contains fixes or smaller refactoring.
5050
- See [releases](https://github.com/hyperledger/aries-vcx/releases) page.
51-
- Crates are known to be stable with atleast Rust version 1.84
51+
- MSRV 1.81 - Crates are known to be stable with atleast Rust version 1.81
5252

5353
# Contributions
5454

@@ -58,7 +58,7 @@ Contributions are very welcome! If you have questions or issues, please let us k
5858

5959
Install Rust: https://www.rust-lang.org/tools/install
6060

61-
We recommend using rustup, as VCX is currently tied to Rust v1.84.x (this maintains consistency between local and CI environments).
61+
We recommend using rustup, as VCX is currently targeting Rust v1.84.1 (this maintains consistency between local and CI environments).
6262

6363
Anoncreds and Indy require the use of openssl and zmq. These may be vendored by consuming applications, but for development installation is required.
6464

0 commit comments

Comments
 (0)