cargo add space-lib
This crate provides WebAssembly host functions and other utilities for Space Operator.
```rust use space_lib::{space, Result}; use serde::{Serialize, Deserialize};
struct Input { value: usize, name: String, }
struct Output { value: usize, name: String, }
fn main(input: Input) -> Result
```rust use space_lib::Request;
let body = Request::get("https://www.spaceoperator.com") .call()? .into_string()?; ```