-
Notifications
You must be signed in to change notification settings - Fork 48
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fixed failing to find the builtin targets Signed-off-by: Brooks Townsend <[email protected]> * fixed unexpected % in ex Signed-off-by: Brooks Townsend <[email protected]> * bumped versions to v0.57.3 Signed-off-by: Brooks Townsend <[email protected]> * added new actor and verification test to avoid this Signed-off-by: Brooks Townsend <[email protected]> * updated actor readme Signed-off-by: Brooks Townsend <[email protected]> Signed-off-by: Brooks Townsend <[email protected]>
- Loading branch information
1 parent
36ba85e
commit f75c6cd
Showing
16 changed files
with
3,069 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
defmodule HostCore.MixProject do | ||
use Mix.Project | ||
|
||
@app_vsn "0.57.2" | ||
@app_vsn "0.57.3" | ||
|
||
def project do | ||
[ | ||
|
2 changes: 2 additions & 0 deletions
2
host_core/test/fixtures/actors/randogenlogger/.cargo/config.toml
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,2 @@ | ||
[build] | ||
target = "wasm32-unknown-unknown" |
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,41 @@ | ||
# This file lists build byproducts, | ||
# IDE-specific files (unless shared by your team) | ||
|
||
|
||
## Build | ||
/build | ||
/dist/ | ||
/target | ||
**target | ||
|
||
## File system | ||
.DS_Store | ||
desktop.ini | ||
|
||
## Editor | ||
*.swp | ||
*.swo | ||
Session.vim | ||
.cproject | ||
.idea | ||
*.iml | ||
.vscode | ||
.project | ||
.favorites.json | ||
.settings/ | ||
|
||
## Temporary files | ||
*~ | ||
\#* | ||
\#*\# | ||
.#* | ||
|
||
## Python | ||
__pycache__/ | ||
*.py[cod] | ||
*$py.class | ||
|
||
## Node | ||
**node_modules | ||
**package-lock.json | ||
|
Oops, something went wrong.