-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
140 changed files
with
15,681 additions
and
9,523 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,26 @@ | ||
--- | ||
name: Upload Binaries | ||
on: | ||
release: | ||
types: | ||
- created | ||
types: [published] | ||
workflow_dispatch: | ||
jobs: | ||
build: | ||
name: build release binary | ||
name: Build Release Binaries | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: | ||
- macos-latest | ||
- ubuntu-latest | ||
- windows-latest | ||
channel: | ||
- stable | ||
- nightly | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- run: rustup update ${{ matrix.channel }} | ||
- run: rustup default ${{ matrix.channel }} | ||
- run: cargo build --release --verbose --package manta-trusted-setup --all-features --bin groth16_phase2_client | ||
- run: rustup update stable | ||
- run: rustup default stable | ||
- run: cargo build --release --all-features --workspace | ||
- id: get_release | ||
uses: bruceadams/get-release@v1.2.3 | ||
uses: bruceadams/get-release@v1.3.2 | ||
env: | ||
GITHUB_TOKEN: ${{ github.token }} | ||
- if: matrix.os == 'macos-latest' | ||
|
@@ -33,23 +30,23 @@ jobs: | |
with: | ||
upload_url: ${{ steps.get_release.outputs.upload_url }} | ||
asset_path: ./target/release/groth16_phase2_client | ||
asset_name: groth16-phase2-client-${{ matrix.channel }}-macos | ||
asset_content_type: application/octet-stream | ||
asset_name: groth16-phase2-client-macos-latest | ||
asset_content_type: application/binary | ||
- if: matrix.os == 'ubuntu-latest' | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ github.token }} | ||
with: | ||
upload_url: ${{ steps.get_release.outputs.upload_url }} | ||
asset_path: ./target/release/groth16_phase2_client | ||
asset_name: groth16-phase2-client-${{ matrix.channel }}-ubuntu | ||
asset_content_type: application/octet-stream | ||
asset_name: groth16-phase2-client-ubuntu-latest | ||
asset_content_type: application/binary | ||
- if: matrix.os == 'windows-latest' | ||
uses: actions/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ github.token }} | ||
with: | ||
upload_url: ${{ steps.get_release.outputs.upload_url }} | ||
asset_path: ./target/release/groth16_phase2_client | ||
asset_name: groth16-phase2-client-${{ matrix.channel }}-windows | ||
asset_content_type: application/octet-stream | ||
asset_name: groth16-phase2-client-windows-latest | ||
asset_content_type: application/binary |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
/target | ||
Cargo.lock | ||
.idea/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
[workspace.package] | ||
version = "0.5.6" | ||
version = "0.5.7" | ||
edition = "2021" | ||
authors = ["Manta Network <[email protected]>"] | ||
repository = "https://github.com/Manta-Network/manta-rs" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "manta-accounting" | ||
version = "0.5.6" | ||
version = "0.5.7" | ||
edition = "2021" | ||
authors = ["Manta Network <[email protected]>"] | ||
readme = "README.md" | ||
|
@@ -47,7 +47,9 @@ std = ["manta-crypto/std", "manta-util/std"] | |
test = [ | ||
"futures", | ||
"indexmap", | ||
"manta-crypto/arkworks", | ||
"manta-crypto/rand", | ||
"manta-crypto/test", | ||
"parking_lot", | ||
"statrs" | ||
] | ||
|
Oops, something went wrong.