Skip to content

Commit

Permalink
Merge pull request #82 from movemntdev/idx-v2
Browse files Browse the repository at this point in the history
Idx v2
  • Loading branch information
l-monninger authored Nov 20, 2023
2 parents 4b6a8b6 + 7ed0757 commit 2489e80
Show file tree
Hide file tree
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.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ awscpu

.coverage

bin/
# bin/
build/
vendor

Expand Down
13 changes: 8 additions & 5 deletions .gitmodules
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
33 changes: 33 additions & 0 deletions canonical/.cargo/config.toml
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
]
1 change: 1 addition & 0 deletions canonical/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
target
Loading

0 comments on commit 2489e80

Please sign in to comment.