polywrap_plugin 0.1.11

Core package to build plugins in rust to interact with Polywrap Client
Documentation
pub mod error;
pub mod method;
pub mod module;
pub mod package;
pub mod with_methods;
pub mod wrapper;

pub use error::*;
pub use method::*;
pub use module::*;
pub use package::*;
pub use with_methods::*;
pub use wrapper::*;

pub use implementor::*;
pub use polywrap_core::{client::*, invoker::*, macros::*, *};
pub use polywrap_msgpack_serde::{serde_bytes::ByteBuf, to_vec, Map, *};
pub use polywrap_plugin_implementor as implementor;
pub use polywrap_uri::*;
pub use wrap_manifest_schemas::{versions::*, *};

// These are needed to expose because plugin_impl macro uses it
pub use polywrap_core;
pub use polywrap_msgpack_serde;
pub use serde_json::*;