openwhisk-rust 0.1.5

OpenWhisk Client written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod common;
mod openwhisk_client;

mod wasmtime_client;
pub use common::*;
pub use openwhisk_client::OpenwhiskClient;

#[cfg(not(target_arch = "wasm32"))]
mod native_client;
#[cfg(not(target_arch = "wasm32"))]
pub use native_client::*;

pub use wasmtime_client::WasmClient;