wrap-cli
wrap-cli copied to clipboard
Used to create, build, and integrate wraps.
**Is your feature request related to a problem? Please describe.** Replace the IPFS plugin with a wrapper to reduce client package size **Describe the solution you'd like** Write a Rust...
Example use of the current PolywrapProvider: ```tsx const redirects = []; const plugins = []; ``` A much cleaner (and similar to other react packages) interface would be: ```tsx const...
Enum imports are now added in serialization modules when the enum is a subtype of an array (`Vec`) or map Closes https://github.com/polywrap/toolchain/issues/1313
**Is your feature request related to a problem? Please describe.** When developers are building wasm wrappers with the `vm` build strategy, the only way to customize it is to modify...
**Describe the bug** In an imported module that uses an enum, Rust bindings are being generated without the required import statement. The import statements are missing in `wrap/imported/concurrent_module/serialization.rs`. **Expected behavior**...
This PR adds comments in the TSDoc format to public methods of the JS PolywrapClient, and adds a readme with full reference documentation based on the comments. The benefits of...
**Is your feature request related to a problem? Please describe.** Currently we have no test coverage of our newly created `Logger` found inside the `polywrap` package. **Describe the solution you'd...
# Motivation I want to be able to build Polywrap enabled apps in Rust. This requires the creation of a Polywrap Client in Rust. # Prior Work We already have...