Skip to content

Commit

Permalink
Merge pull request #27 from andrewwhitehead/upd/version
Browse files Browse the repository at this point in the history
Update minimum Rust version, package version
  • Loading branch information
andrewwhitehead authored Jun 28, 2023
2 parents 24629a6 + cadc0e4 commit 76dc6c7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: "Indy-Credx"

env:
RUST_VERSION: "1.60.0"
RUST_VERSION: "1.64.0"
CROSS_VERSION: "0.2.4"
OPENSSL_STATIC: 1

Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
- name: Cargo check
run: cargo check --workspace --features vendored

- if: "runner.os == 'Linux'"
- if: ${{ runner.os == 'Linux' }}
name: Pre-install cross
run: |
cargo install --bins --git https://github.com/rust-embedded/cross --tag v${{ env.CROSS_VERSION }} cross
Expand Down Expand Up @@ -248,15 +248,15 @@ jobs:
- name: Run tests
# FIXME cross platform test the python package
# maybe use the cross docker image?
if: "matrix.architecture != 'linux-aarch64'"
if: ${{ matrix.architecture != 'linux-aarch64' }}
run: python -m demo.test
working-directory: wrappers/python
env:
no_proxy: "*" # python issue 30385
RUST_BACKTRACE: full
# RUST_LOG: debug

- if: "runner.os == 'Linux'"
- if: ${{ runner.os == 'Linux' }}
name: Audit wheel
run: |
auditwheel show wrappers/python/dist/* | tee auditwheel.log
Expand Down
5 changes: 3 additions & 2 deletions indy-credx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "indy-credx"
version = "0.3.2"
version = "0.3.3"
authors = ["Hyperledger Indy Contributors <[email protected]>"]
description = "Verifiable credential issuance and presentation for Hyperledger Indy (https://www.hyperledger.org/projects), which provides a distributed-ledger-based foundation for self-sovereign identity (https://sovrin.org)."
edition = "2018"
Expand All @@ -9,6 +9,7 @@ readme = "../README.md"
repository = "https://github.com/hyperledger/indy-shared-rs/"
categories = ["authentication", "cryptography"]
keywords = ["hyperledger", "indy", "ssi", "verifiable", "credentials"]
rust-version = "1.63.0"

[lib]
name = "indy_credx"
Expand All @@ -22,7 +23,7 @@ logger = ["env_logger"]
vendored = ["indy-data-types/vendored"]

[dependencies]
env_logger = { version = "0.9", optional = true }
env_logger = { version = "0.10", optional = true }
ffi-support = { version = "0.4.0", optional = true }
log = "0.4"
once_cell = "1.9"
Expand Down

0 comments on commit 76dc6c7

Please sign in to comment.