Skip to content
This repository was archived by the owner on Jul 10, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
1c6237f
wip
ValeryAntopol Jul 17, 2023
a0ee163
Merge branch 'master' into feat/async-call
ValeryAntopol Sep 15, 2023
ee87b57
WIP
ValeryAntopol Oct 4, 2023
cb46cc4
WIP
ValeryAntopol Oct 10, 2023
5086193
compiles, async mrepl works
ValeryAntopol Nov 6, 2023
a5d949a
add Send
ValeryAntopol Nov 7, 2023
c7bb98f
Merge branch 'master' into feat/async-call
ValeryAntopol Nov 8, 2023
f4e5621
Updating marine-js
ValeryAntopol Nov 9, 2023
103ff68
FuncGetter compiles
ValeryAntopol Nov 9, 2023
408465b
wow it compiles
ValeryAntopol Nov 10, 2023
d74d9ba
marine-js compiles but does not work
ValeryAntopol Nov 13, 2023
15c474b
marine-js tests almost pass
ValeryAntopol Nov 14, 2023
d473700
marine-runtime and marine-core tests pass
ValeryAntopol Nov 14, 2023
fd64485
fmt
ValeryAntopol Nov 14, 2023
10f8894
epoch interruption works in mrepl
ValeryAntopol Nov 14, 2023
78f66c3
WIP: switching from async_trait to box_future
ValeryAntopol Nov 28, 2023
812404f
move from async_trait to BoxFuture
ValeryAntopol Nov 30, 2023
bf11145
self-review fixes
ValeryAntopol Nov 30, 2023
6aa8da5
self-review fixes
ValeryAntopol Dec 5, 2023
26236cb
Merge branch 'master' into feat/async-call
ValeryAntopol Dec 20, 2023
17c8851
merge memory limits
ValeryAntopol Dec 20, 2023
abd5522
pr fixes
ValeryAntopol Jan 15, 2024
4c8429b
pr fixes
ValeryAntopol Jan 15, 2024
1fc0919
pr fixes
ValeryAntopol Jan 17, 2024
00c4a67
pr fixes
ValeryAntopol Jan 17, 2024
e80a716
Merge branch 'master' into feat/async-call
ValeryAntopol Jan 17, 2024
2a20d1c
update cargo lock
ValeryAntopol Jan 18, 2024
beeb742
use published interface-types
ValeryAntopol Jan 25, 2024
7531e8e
remove patch deps
ValeryAntopol Jan 25, 2024
ffa4dc3
fix factory and make AppService generic
ValeryAntopol Jan 26, 2024
8ebd236
fix marine-js
ValeryAntopol Jan 26, 2024
4a51bd2
try locking deps
ValeryAntopol Jan 26, 2024
1095664
add debug prints to workflow
ValeryAntopol Jan 30, 2024
7b53c61
fix workflow
ValeryAntopol Jan 30, 2024
5f522f2
update workflow
ValeryAntopol Jan 30, 2024
7ac7d00
make marine-js bindings patcher update all __wbg_adapter_* functions
ValeryAntopol Jan 31, 2024
fabffc4
remove debug prints from workflows
ValeryAntopol Jan 31, 2024
748607d
self-review fixes
ValeryAntopol Jan 31, 2024
755fa43
self-review fixes
ValeryAntopol Jan 31, 2024
d6ef7eb
self-review fixes
ValeryAntopol Feb 5, 2024
d772757
final fixes
ValeryAntopol Feb 5, 2024
215864c
fix mrepl
ValeryAntopol Feb 5, 2024
ad26baf
Merge branch 'master' into feat/async-call
ValeryAntopol Feb 8, 2024
5e48c79
Merge branch 'master' into feat/async-call
ValeryAntopol Feb 8, 2024
60ebd09
fix pr comments, fmt and clippy
ValeryAntopol Feb 14, 2024
ebada11
Merge branch 'master' into feat/async-call
ValeryAntopol Mar 27, 2024
4b79b3c
fix Cargo.toml and Cargo.lock after merge
ValeryAntopol Mar 27, 2024
da8d81a
test fixes after merge
ValeryAntopol Mar 27, 2024
edddf64
update rust toolchain to match one in no
ValeryAntopol Mar 27, 2024
1347e69
Merge branch 'feat/update-rust' into feat/async-call
ValeryAntopol Mar 27, 2024
e8d89e3
fixes for nox integration
ValeryAntopol Mar 27, 2024
5aec541
reexport MError
ValeryAntopol Mar 27, 2024
4365c6c
update js bindings
ValeryAntopol Apr 10, 2024
ef4e195
fix warning
ValeryAntopol Apr 10, 2024
a6e8a45
fmt
ValeryAntopol Apr 10, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
111 changes: 75 additions & 36 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[workspace]
resolver = "2"
members = [
"core",
"core/tests/wasm_tests/lilo_after_2gb",
Expand Down
7 changes: 4 additions & 3 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,11 @@ marine-min-it-version = { path = "../crates/min-it-version", version = "0.3.2"
marine-wasm-backend-traits = {path = "../crates/wasm-backend-traits", version = "0.6.0" }
marine-wasmtime-backend = { path = "../crates/wasmtime-backend", version = "0.6.0", optional = true}

wasmer-it = { package = "wasmer-interface-types-fl", version = "0.27.0" }
it-lilo = "0.6.0"
it-memory-traits = "0.4.0"
wasmer-it = { package = "wasmer-interface-types-fl", version = "0.28.0" }
it-lilo = "0.7.0"
it-memory-traits = "0.5.0"
bytesize = "1.2.0"
futures = "0.3.29"

multimap = "0.8.3"
once_cell = "1.16.0"
Expand Down
Loading