Fix minor issues pointed out in the review

This commit is contained in:
Isaac Clayton 2022-07-11 15:54:03 +02:00
parent 3ad8d5363c
commit ec327a30c3
17 changed files with 293 additions and 270 deletions

View file

@ -6,4 +6,4 @@ edition = "2021"
[dependencies]
serde = "1.0"
bincode = "1.3"
plugin_macros = { path = "../plugin_macros" }
plugin_macros = { path = "../plugin_macros" }

View file

@ -1,7 +1,10 @@
pub use bincode;
pub use serde;
// TODO: move the implementation to one place?
/// This is the buffer that is used Wasm side.
/// Note that it mirrors the functionality of
/// the `WasiBuffer` found in `plugin_runtime/src/plugin.rs`,
/// But has a few different methods.
pub struct __Buffer {
pub ptr: u32, // *const u8,
pub len: u32, // usize,