-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(refactor): restructure project + upgrade dependencies/transitiv…
…e-dependencies (#614) * Utilize near_account_id crate * Getting local deps to work with tests * Moved out chain-signatures integration tests into own package * Seperated fastauth integration tests into own directory * Fixing configs and GH actions workflows * Proper lake-indexer image and more reliable builds * No more local packages * Some doc fixes and workflow fixes * Added secret manager accounts artifacts to .gitignore * Make tests work again * Get rust-analyzer to work on project root * Fix test-oidc image build * Try and fix audit CI * Clippy
- Loading branch information
1 parent
2d8d274
commit c7d6e6d
Showing
77 changed files
with
45,041 additions
and
3,613 deletions.
There are no files selected for viewing
File renamed without changes.
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
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
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,7 +1,11 @@ | ||
/target | ||
.direnv | ||
.DS_Store | ||
.idea | ||
|
||
flamegraph*.svg | ||
tmp | ||
*.log | ||
*.log | ||
|
||
# Artifacts that may be left over | ||
**/*-secret-manager-* |
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 @@ | ||
{ | ||
"githubPullRequests.ignoredPullRequestBranches": [ | ||
"develop" | ||
], | ||
"rust-analyzer.linkedProjects": [ | ||
"keys/Cargo.toml", | ||
"node/Cargo.toml", | ||
"contract/Cargo.toml", | ||
"integration-tests/chain-signatures/Cargo.toml", | ||
"integration-tests/fastauth/Cargo.toml", | ||
"mpc-recovery/Cargo.toml", | ||
], | ||
} |
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
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 |
---|---|---|
|
@@ -187,5 +187,6 @@ direnv allow | |
|
||
Run unit tests with: | ||
```BASH | ||
cargo test -p mpc-recovery | ||
cd mpc-recovery/ | ||
cargo test | ||
``` |
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,2 @@ | ||
[build] | ||
target = "wasm32-unknown-unknown" | ||
target-dir = "../target" |
Oops, something went wrong.