Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introduce encrypted threshold decryption request/response functionality #52

Merged
merged 10 commits into from
May 23, 2023
Merged
6 changes: 3 additions & 3 deletions .github/workflows/nucypher-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
matrix:
include:
- target: x86_64-unknown-linux-gnu
rust: 1.64 # MSRV
rust: 1.65 # MSRV
- target: x86_64-unknown-linux-gnu
rust: stable

Expand All @@ -50,7 +50,7 @@ jobs:
strategy:
matrix:
rust:
- 1.64 # MSRV
- 1.65 # MSRV
- stable
target:
- wasm32-unknown-unknown
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
toolchain: ${{ matrix.rust }}
target: ${{ matrix.target }}
override: true
- run: cargo install wasm-pack
- run: cargo install wasm-opt wasm-pack
derekpierre marked this conversation as resolved.
Show resolved Hide resolved
- run: make
working-directory: nucypher-core-wasm
- uses: borales/actions-yarn@v3.0.0
Expand Down
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
target/
Cargo.lock

9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,15 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.8.0] - Unreleased
derekpierre marked this conversation as resolved.
Show resolved Hide resolved

### Added

- Add `EncryptedThresholdDecryptionRequest`/`EncryptedThresholdDecryptionResponse` types and bindings. ([#52])`


[#52]: https://github.com/nucypher/nucypher-core/pull/52


## [0.7.0] - 2023-05-01

Expand Down
Loading