-
Notifications
You must be signed in to change notification settings - Fork 17
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
chore(refactor): restructure project + upgrade dependencies/transitive-dependencies #614
Merged
Merged
Changes from 14 commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
b3e6638
Utilize near_account_id crate
ChaoticTempest 6447854
Getting local deps to work with tests
ChaoticTempest 3d1ddb6
Moved out chain-signatures integration tests into own package
ChaoticTempest d2b03d6
Seperated fastauth integration tests into own directory
ChaoticTempest 11c1fc3
Fixing configs and GH actions workflows
ChaoticTempest f55594b
Proper lake-indexer image and more reliable builds
ChaoticTempest 6e8272f
No more local packages
ChaoticTempest 7667368
Some doc fixes and workflow fixes
ChaoticTempest 63c9e42
Merge branch 'develop' of github.com:near/mpc-recovery into phuong/ch…
ChaoticTempest 98ed6cb
Added secret manager accounts artifacts to .gitignore
ChaoticTempest e0585e3
Make tests work again
ChaoticTempest 3d809c9
Get rust-analyzer to work on project root
ChaoticTempest 71b9924
Fix test-oidc image build
ChaoticTempest 4499b8f
Try and fix audit CI
ChaoticTempest 2714fca
Clippy
ChaoticTempest File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why node-1.38?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
because node-1.39 doesn't work well with
near-crypto 0.21
. I'll update tonear-crypto 0.22
afterwards which does. Just didn't want to add more complexity to this PR