truss-image 0.17.0

Image toolkit with a shared Rust core across the CLI, HTTP server, and WASM demo.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Adapter implementations for concrete runtimes.

/// Command-line adapter functionality.
#[cfg(feature = "cli")]
pub mod cli;
/// HTTP server adapter functionality.
#[cfg(feature = "server")]
pub mod server;
/// Browser and WebAssembly adapter functionality.
pub mod wasm;