-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(deps)!: update to marine runtime with memory limits (#98)
update marine
- Loading branch information
1 parent
0e164f3
commit f772635
Showing
15 changed files
with
768 additions
and
392 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
1 change: 1 addition & 0 deletions
1
crates/marine-test-macro-impl/tests/generation_tests/empty_func/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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
modules_dir = "artifacts/" | ||
total_memory_limit = "Infinity" | ||
|
||
[[module]] | ||
name = "greeting" | ||
|
1 change: 1 addition & 0 deletions
1
crates/marine-test-macro-impl/tests/generation_tests/mounted_binary/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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
modules_dir = "artifacts/" | ||
total_memory_limit = "Infinity" | ||
|
||
[[module]] | ||
name = "greeting" | ||
|
1 change: 1 addition & 0 deletions
1
crates/marine-test-macro-impl/tests/generation_tests/multi-service-empty_mod/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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
modules_dir = "artifacts/" | ||
total_memory_limit = "Infinity" | ||
|
||
[[module]] | ||
name = "greeting" | ||
|
1 change: 1 addition & 0 deletions
1
...rine-test-macro-impl/tests/generation_tests/multi-service-multiple/empty_func/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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
modules_dir = "artifacts/" | ||
total_memory_limit = "Infinity" | ||
|
||
[[module]] | ||
name = "greeting" | ||
|
1 change: 1 addition & 0 deletions
1
...-test-macro-impl/tests/generation_tests/multi-service-multiple/mounted_binary/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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
modules_dir = "artifacts/" | ||
total_memory_limit = "Infinity" | ||
|
||
[[module]] | ||
name = "greeting" | ||
|
1 change: 1 addition & 0 deletions
1
...marine-test-macro-impl/tests/generation_tests/multi-service-single/empty_func/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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
modules_dir = "artifacts/" | ||
total_memory_limit = "Infinity" | ||
|
||
[[module]] | ||
name = "greeting" | ||
|
2 changes: 2 additions & 0 deletions
2
crates/marine-test-macro-impl/tests/generation_tests/multiple_modules/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 |
---|---|---|
@@ -1,4 +1,6 @@ | ||
modules_dir = "artifacts/" | ||
total_memory_limit = "Infinity" | ||
|
||
[[module]] | ||
name = "greeting" | ||
mem_pages_count = 1 | ||
|
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,6 +1,6 @@ | ||
modules_dir = "artifacts/" | ||
total_memory_limit = "Infinity" | ||
|
||
[[module]] | ||
name = "build_rs_test" | ||
max_heap_size = "10 KiB" | ||
logger_enabled = false |
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,6 +1,6 @@ | ||
modules_dir = "artifacts/" | ||
total_memory_limit = "Infinity" | ||
|
||
[[module]] | ||
name = "consumer" | ||
max_heap_size = "10 KiB" | ||
logger_enabled = false |
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,6 +1,6 @@ | ||
modules_dir = "artifacts/" | ||
total_memory_limit = "Infinity" | ||
|
||
[[module]] | ||
name = "producer" | ||
max_heap_size = "10 KiB" | ||
logger_enabled = false |
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,6 +1,6 @@ | ||
modules_dir = "artifacts/" | ||
total_memory_limit = "Infinity" | ||
|
||
[[module]] | ||
name = "greeting" | ||
max_heap_size = "10 KiB" | ||
logger_enabled = false |
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,4 +1,4 @@ | ||
[toolchain] | ||
channel = "nightly-2022-12-01" | ||
channel = "nightly-2023-12-10" | ||
targets = [ "x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "wasm32-wasi" ] | ||
components = ["clippy", "rustfmt"] |