-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(rpc): implement
wasmtime_rpc::link_function
Signed-off-by: Roman Volosatovs <[email protected]>
- Loading branch information
1 parent
23409ca
commit 60383dd
Showing
9 changed files
with
1,198 additions
and
0 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
[package] | ||
name = "wasmtime-rpc" | ||
description = "RPC-based Wasmtime functionality extensions" | ||
|
||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
|
||
[dependencies] | ||
anyhow = { workspace = true } | ||
bytes = { workspace = true } | ||
futures = { workspace = true, features = ["alloc"] } | ||
tracing = { workspace = true } | ||
tokio = { workspace = true, features = ["macros"] } | ||
tokio-util = { workspace = true, features = ["codec"] } | ||
wasm-tokio = { workspace = true } | ||
wasmtime = { workspace = true } | ||
wasmtime-wasi = { workspace = true } | ||
wrpc-transport = { workspace = true } | ||
|
||
[dev-dependencies] | ||
test-log = { workspace = true } | ||
test-programs-artifacts = { workspace = true } | ||
tracing-subscriber = { workspace = true } | ||
|
||
[lints] | ||
workspace = true |
Oops, something went wrong.