-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #82 from movemntdev/idx-v2
Idx v2
- Loading branch information
Showing
7,643 changed files
with
714,063 additions
and
38,273 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
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 |
---|---|---|
|
@@ -43,7 +43,7 @@ awscpu | |
|
||
.coverage | ||
|
||
bin/ | ||
# bin/ | ||
build/ | ||
vendor | ||
|
||
|
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,20 +1,23 @@ | ||
[submodule "aptos-core"] | ||
path = third-party/aptos-core | ||
path = vendors/aptos-core | ||
url = https://github.com/movemntdev/aptos-core | ||
branch = m1 | ||
[submodule "x25519-dalek"] | ||
path = third-party/x25519-dalek | ||
path = vendors/x25519-dalek | ||
url = https://github.com/movemntdev/x25519-dalek | ||
[submodule "ed25519-dalek"] | ||
path = third-party/ed25519-dalek | ||
path = vendors/ed25519-dalek | ||
url = https://github.com/movemntdev/ed25519-dalek | ||
[submodule "ecosystem/evm-runtime"] | ||
path = ecosystem/evm-runtime | ||
url = https://github.com/movemntdev/move-evm-swap-backend | ||
[submodule "ecosystem/subnet-request-proxy"] | ||
path = ecosystem/subnet-request-proxy | ||
path = m1/subnet-request-proxy | ||
url = https://github.com/movemntdev/subnet-request-proxy | ||
[submodule "aptos-pre-core-v2"] | ||
path = third-party/aptos-core-1.7 | ||
path = vendors/aptos-core-1.7 | ||
url = https://github.com/movemntdev/aptos-core | ||
branch = testnet | ||
[submodule "m1/third-party/sui"] | ||
path = vendors/sui | ||
url = https://github.com/movemntdev/sui |
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,33 @@ | ||
[alias] | ||
xclippy = [ | ||
"clippy", | ||
"--workspace", | ||
"--all-targets", | ||
"--", | ||
"-Dwarnings", | ||
"-Wclippy::all", | ||
"-Aclippy::upper_case_acronyms", | ||
"-Aclippy::enum-variant-names", | ||
"-Aclippy::result-large-err", | ||
"-Aclippy::mutable-key-type", | ||
] | ||
|
||
[build] | ||
rustflags = ["--cfg", "tokio_unstable", "-C", "force-frame-pointers=yes", "-C", "force-unwind-tables=yes"] | ||
|
||
# TODO(grao): Figure out whether we should enable other cpu features, and whether we should use a different way to configure them rather than list every single one here. | ||
[target.x86_64-unknown-linux-gnu] | ||
rustflags = ["--cfg", "tokio_unstable", "-C", "link-arg=-fuse-ld=lld", "-C", "force-frame-pointers=yes", "-C", "force-unwind-tables=yes", "-C", "target-feature=+sse4.2"] | ||
|
||
# 64 bit MSVC | ||
[target.x86_64-pc-windows-msvc] | ||
rustflags = [ | ||
"--cfg", | ||
"tokio_unstable", | ||
"-C", | ||
"force-frame-pointers=yes", | ||
"-C", | ||
"force-unwind-tables=yes", | ||
"-C", | ||
"link-arg=/STACK:8000000" # Set stack to 8 MB | ||
] |
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 @@ | ||
target |
Oops, something went wrong.