forked from dojoengine/dojo
-
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.
Merge pull request #2 from fishseabowl/1466_fix_non_state
Sync with main branch
- Loading branch information
Showing
396 changed files
with
28,705 additions
and
12,257 deletions.
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
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 |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Description | ||
|
||
<!-- | ||
A description of what this PR is solving. | ||
--> | ||
|
||
## Related issue | ||
|
||
<!-- | ||
Please link related issues: Fixes #<issue_number> | ||
More info: https://docs.github.com/en/free-pro-team@latest/github/managing-your-work-on-github/linking-a-pull-request-to-an-issue#linking-a-pull-request-to-an-issue-using-a-keyword | ||
--> | ||
|
||
## Tests | ||
|
||
<!-- | ||
Please refer to the CONTRIBUTING.md file to know more about the testing process. Ensure you've tested at least the package you're modifying if running all the tests consumes too much memory on your system. | ||
--> | ||
|
||
- [ ] Yes | ||
- [ ] No, because they aren't needed | ||
- [ ] No, because I need help | ||
|
||
## Added to documentation? | ||
|
||
<!-- | ||
If the changes are small, code comments are enough, otherwise, the documentation is needed. It | ||
may be a README.md file added to your module/package, a DojoBook PR or both. | ||
--> | ||
|
||
- [ ] README.md | ||
- [ ] [Dojo Book](https://github.com/dojoengine/book) | ||
- [ ] No documentation needed | ||
|
||
## Checklist | ||
|
||
- [ ] I've formatted my code (`scripts/prettier.sh`, `scripts/rust_fmt.sh`, `scripts/cairo_fmt.sh`) | ||
- [ ] I've linted my code (`scripts/clippy.sh`, `scripts/docs.sh`) | ||
- [ ] I've commented my code | ||
- [ ] I've requested a review after addressing the comments |
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
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,3 +1,3 @@ | ||
[submodule "crates/katana/primitives/contracts/messaging/solidity/lib/forge-std"] | ||
path = crates/katana/primitives/contracts/messaging/solidity/lib/forge-std | ||
[submodule "crates/katana/contracts/messaging/solidity/lib/forge-std"] | ||
path = crates/katana/contracts/messaging/solidity/lib/forge-std | ||
url = https://github.com/foundry-rs/forge-std |
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 @@ | ||
scarb 2.6.3 |
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,22 +1,41 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"type": "lldb", | ||
"request": "launch", | ||
"name": "Debug unit tests in 'dojo-world'", | ||
"cargo": { | ||
"args": ["test", "--no-run", "--package=dojo-world", "--lib"], | ||
"filter": { | ||
"name": "dojo-world", | ||
"kind": "lib" | ||
} | ||
}, | ||
"args": ["migration::compile_moves"], | ||
"cwd": "${workspaceFolder}/crates/dojo-world" | ||
} | ||
] | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Dojo Core test", | ||
"type": "lldb", | ||
"request": "launch", | ||
"program": "${workspaceFolder}/target/debug/sozo", | ||
"args": ["--manifest-path", "crates/dojo-core/Scarb.toml", "test"] | ||
}, | ||
{ | ||
"name": "Sozo Migrate", | ||
"type": "lldb", | ||
"request": "launch", | ||
"program": "${workspaceFolder}/target/debug/sozo", | ||
"args": [ | ||
"--manifest-path", | ||
"examples/spawn-and-move/Scarb.toml", | ||
"migrate", | ||
"apply" | ||
] | ||
}, | ||
{ | ||
"type": "lldb", | ||
"request": "launch", | ||
"name": "Debug unit tests in 'dojo-world'", | ||
"cargo": { | ||
"args": ["test", "--no-run", "--package=dojo-world", "--lib"], | ||
"filter": { | ||
"name": "dojo-world", | ||
"kind": "lib" | ||
} | ||
}, | ||
"args": ["migration::compile_moves"], | ||
"cwd": "${workspaceFolder}/crates/dojo-world" | ||
} | ||
] | ||
} |
Oops, something went wrong.