mirror of
https://github.com/fluencelabs/marine.git
synced 2025-03-15 14:00:50 +00:00
* memory limits iteration 1 * correct counting * update to wasmtime 13.0.0 * wip stats recording * adding memory limit tests * fix build * fix build * fix build * fix tests * add configs * update Cargo.lock * self-review fixes * self-review fixes, cleanup * fix tests build * fix tests, remove wee_alloc form lockfile * fix build * format tests * pr fixes * make tests more robust * pr fixes * Add OOM check into marine-runtime * Use new error variant in tests * add handy error message * fix error msg * fix tests * check for OOM more precisely * improve readability * add "inifinity" memory limit, make memory limit mandatory, stop persisting allocation rejects * add forgotten allocation stats clear * pr fixes * pr fixes * use bytesize in tests
19 lines
355 B
TOML
19 lines
355 B
TOML
modules_dir = "artifacts/"
|
|
total_memory_limit = "10 MiB"
|
|
|
|
[[module]]
|
|
name = "sqlite3"
|
|
logger_enabled = false
|
|
|
|
[module.wasi]
|
|
preopened_files = ["/tmp"]
|
|
mapped_dirs = { "tmp" = "/tmp" }
|
|
|
|
[[module]]
|
|
name = "sqlite_test"
|
|
logger_enabled = false
|
|
|
|
[module.wasi]
|
|
preopened_files = ["/tmp"]
|
|
mapped_dirs = { "tmp" = "/tmp" }
|