-
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.
remove workflow Update README.md Update README.md docs and refactor readme Update README.md Update README.md readme readme refactor docs, tests, error handling, type alias docs readme Update README.md Update README.md add testing workflow workflow workflow update Update README.md test: layer count docs workflows and readme workflow names Update README.md workflow badges add benches Update README.md Update README.md update TODO circuit telemetry and benches clippy doctest workflow telemetry Update README.md add RAM bench Update README.md circuit diagram Update README.md docs docs function names and docs
- Loading branch information
1 parent
bd05d26
commit 1f102d8
Showing
10 changed files
with
731 additions
and
160 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,25 @@ | ||
name: Test Keccak Hash | ||
|
||
on: | ||
push: | ||
branches: | ||
- feat/keccak | ||
pull_request: | ||
branches: | ||
- feat/keccak | ||
|
||
jobs: | ||
build_and_test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: nightly | ||
profile: minimal | ||
override: true | ||
components: rustfmt, clippy | ||
- uses: actions-rs/cargo@v1 | ||
with: | ||
command: test | ||
args: --release |
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,25 @@ | ||
name: Test Poseidon Hash | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build_and_test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: nightly | ||
profile: minimal | ||
override: true | ||
components: rustfmt, clippy | ||
- uses: actions-rs/cargo@v1 | ||
with: | ||
command: test | ||
args: --release |
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,13 @@ | ||
{ | ||
"git.openRepositoryInParentFolders": "never", | ||
"git.confirmSync": false, | ||
"editor.formatOnSave": true, | ||
"workbench.startupEditor": "none", | ||
"extensions.ignoreRecommendations": true, | ||
"rust-analyzer.rustfmt.overrideCommand": [ | ||
"rustfmt", | ||
"+nightly" | ||
], | ||
"rust-analyzer.server.path": null, | ||
"explorer.confirmDelete": false | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.