Skip to content

Commit c4b558c

Browse files
authored
Merge pull request #247 from andrewwhitehead/upd/ver-041
Update python wrapper version to 0.4.1, proxy to 0.1.5
2 parents 83f3507 + 0d97507 commit c4b558c

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/build.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
- if: ${{ runner.os == 'Linux' }}
6565
name: Pre-install cross
6666
run: |
67-
cargo install --bins --git https://github.com/rust-embedded/cross --tag v${{ env.CROSS_VERSION }} cross
67+
cargo install --bins --git https://github.com/rust-embedded/cross --locked --tag v${{ env.CROSS_VERSION }} cross
6868
6969
test-suite:
7070
name: Run Test Suite
@@ -148,7 +148,7 @@ jobs:
148148
- if: ${{ matrix.use_cross }}
149149
name: Build (cross)
150150
run: |
151-
cargo install --bins --git https://github.com/rust-embedded/cross --tag v${{ env.CROSS_VERSION }} cross
151+
cargo install --bins --git https://github.com/rust-embedded/cross --locked --tag v${{ env.CROSS_VERSION }} cross
152152
cross build --lib --release --target ${{ matrix.target }}
153153
154154
- if: ${{ !matrix.use_cross && matrix.architecture == 'darwin-universal' }}
@@ -379,7 +379,7 @@ jobs:
379379

380380
- name: Build
381381
run: |
382-
cargo install --bins --git https://github.com/rust-embedded/cross --tag v${{ env.CROSS_VERSION }} cross
382+
cargo install --bins --git https://github.com/rust-embedded/cross --locked --tag v${{ env.CROSS_VERSION }} cross
383383
cross build --lib --release --target ${{matrix.target}} --package indy-vdr
384384
385385
- name: Save library

indy-vdr-proxy/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "indy-vdr-proxy"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
authors = [
55
"Hyperledger Indy Contributors <[email protected]>",
66
]
@@ -10,7 +10,7 @@ rust-version = "1.63"
1010
license = "Apache-2.0"
1111

1212
[features]
13-
fetch = ["hyper-tls", "hyper/client"]
13+
fetch = ["hyper/client", "hyper-tls"]
1414
zmq_vendored = ["indy-vdr/zmq_vendored"]
1515
tls = ["rustls-pemfile", "tokio-rustls", "hyper/stream"]
1616
default = ["fetch", "zmq_vendored"]
@@ -29,11 +29,11 @@ hyper-tls = { version = "0.5", optional = true }
2929
log = "0.4.8"
3030
percent-encoding = "2"
3131
regex = "1.5.4"
32+
rustls-pemfile = { version = "1.0.3", optional = true }
3233
serde_json = "1.0"
3334
tokio = { version = "1.0", features = ["macros", "rt-multi-thread", "signal"] }
35+
tokio-rustls = { version = "0.24", optional = true }
3436
url = "2.2.2"
35-
rustls-pemfile = { version = "1.0.3", optional = true }
36-
tokio-rustls = { version = "0.24.1", optional = true }
3737

3838
[target.'cfg(unix)'.dependencies]
3939
hyper-unix-connector = "0.2"

wrappers/python/indy_vdr/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""indy_vdr library wrapper version."""
22

3-
__version__ = "0.4.0"
3+
__version__ = "0.4.1"

0 commit comments

Comments
 (0)