forked from zcash/librustzcash
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Zsa1 is updated to a more current upstream version, commit: c3eace4
- Loading branch information
1 parent
3554273
commit f10ae22
Showing
241 changed files
with
43,471 additions
and
26,137 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# EditorConfig is awesome:http://EditorConfig.org | ||
|
||
# top-most EditorConfig file | ||
root = true | ||
|
||
[*.md] | ||
indent_style = space |
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 @@ | ||
zcash_client_backend/src/proto/compact_formats.rs linguist-generated=true | ||
zcash_client_backend/src/proto/service.rs linguist-generated=true | ||
zcash_client_backend/src/proto/proposal.rs linguist-generated=true |
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: 'Prepare CI' | ||
description: 'Prepares feature flags' | ||
inputs: | ||
extra-features: | ||
description: 'Extra feature flags to enable' | ||
required: false | ||
default: '' | ||
test-dependencies: | ||
description: 'Include test dependencies' | ||
required: false | ||
default: true | ||
outputs: | ||
feature-flags: | ||
description: 'Feature flags' | ||
value: ${{ steps.prepare.outputs.flags }} | ||
runs: | ||
using: 'composite' | ||
steps: | ||
- id: test | ||
shell: bash | ||
run: echo "feature=test-dependencies" >> $GITHUB_OUTPUT | ||
if: inputs.test-dependencies == 'true' | ||
- name: Prepare feature flags | ||
id: prepare | ||
shell: bash | ||
run: > | ||
echo "flags=--features ' | ||
bundled-prover | ||
download-params | ||
temporary-zcashd | ||
transparent-inputs | ||
sapling | ||
unstable | ||
${{ inputs.extra-features }} | ||
${{ steps.test.outputs.feature }} | ||
'" >> $GITHUB_OUTPUT |
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Aggregate audits | ||
|
||
on: | ||
push: | ||
branches: main | ||
paths: | ||
- '.github/workflows/aggregate-audits.yml' | ||
- 'supply-chain/audits.toml' | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
trigger: | ||
name: Trigger | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Trigger aggregation in zcash/rust-ecosystem | ||
run: > | ||
gh api repos/zcash/rust-ecosystem/dispatches | ||
--field event_type="aggregate-audits" | ||
--field client_payload[sha]="$GITHUB_SHA" | ||
env: | ||
GH_TOKEN: ${{ github.token }} |
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Audits | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: main | ||
|
||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
cargo-vet: | ||
name: Vet Rust dependencies | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: dtolnay/rust-toolchain@stable | ||
id: toolchain | ||
- run: rustup override set ${{steps.toolchain.outputs.name}} | ||
- run: cargo install cargo-vet --version ~0.9 | ||
- run: cargo vet --locked | ||
|
||
cargo-deny: | ||
name: Check licenses | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: EmbarkStudios/cargo-deny-action@v1 | ||
with: | ||
command: check licenses |
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
Oops, something went wrong.