Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- 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
cargo install --bins --git https://github.com/rust-embedded/cross --locked --tag v${{ env.CROSS_VERSION }} cross

test-suite:
name: Run Test Suite
Expand Down Expand Up @@ -148,7 +148,7 @@ jobs:
- if: ${{ matrix.use_cross }}
name: Build (cross)
run: |
cargo install --bins --git https://github.com/rust-embedded/cross --tag v${{ env.CROSS_VERSION }} cross
cargo install --bins --git https://github.com/rust-embedded/cross --locked --tag v${{ env.CROSS_VERSION }} cross
cross build --lib --release --target ${{ matrix.target }}

- if: ${{ !matrix.use_cross && matrix.architecture == 'darwin-universal' }}
Expand Down Expand Up @@ -379,7 +379,7 @@ jobs:

- name: Build
run: |
cargo install --bins --git https://github.com/rust-embedded/cross --tag v${{ env.CROSS_VERSION }} cross
cargo install --bins --git https://github.com/rust-embedded/cross --locked --tag v${{ env.CROSS_VERSION }} cross
cross build --lib --release --target ${{matrix.target}} --package indy-vdr

- name: Save library
Expand Down
8 changes: 4 additions & 4 deletions indy-vdr-proxy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "indy-vdr-proxy"
version = "0.1.4"
version = "0.1.5"
authors = [
"Hyperledger Indy Contributors <[email protected]>",
]
Expand All @@ -10,7 +10,7 @@ rust-version = "1.63"
license = "Apache-2.0"

[features]
fetch = ["hyper-tls", "hyper/client"]
fetch = ["hyper/client", "hyper-tls"]
zmq_vendored = ["indy-vdr/zmq_vendored"]
tls = ["rustls-pemfile", "tokio-rustls", "hyper/stream"]
default = ["fetch", "zmq_vendored"]
Expand All @@ -29,11 +29,11 @@ hyper-tls = { version = "0.5", optional = true }
log = "0.4.8"
percent-encoding = "2"
regex = "1.5.4"
rustls-pemfile = { version = "1.0.3", optional = true }
serde_json = "1.0"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread", "signal"] }
tokio-rustls = { version = "0.24", optional = true }
url = "2.2.2"
rustls-pemfile = { version = "1.0.3", optional = true }
tokio-rustls = { version = "0.24.1", optional = true }

[target.'cfg(unix)'.dependencies]
hyper-unix-connector = "0.2"
Expand Down
2 changes: 1 addition & 1 deletion wrappers/python/indy_vdr/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""indy_vdr library wrapper version."""

__version__ = "0.4.0"
__version__ = "0.4.1"