momento_functions/
lib.rs

1//! Code generation helpers for Momento Functions
2//!
3//! This crate generates Momento Functions webassembly bindings.
4//!
5//! Functions use `wasm32-unknown-unknown` as the target architecture.
6//! They use the [WIT](https://component-model.bytecodealliance.org/design/wit.html) [Component Model](https://component-model.bytecodealliance.org/)
7//! to describe the ABI.
8//!
9//! You are likely to be interested in the sibling crates:
10//! * [`momento-functions-host`](https://crates.io/crates/momento-functions-host): Interfaces and tools for calling host interfaces.
11//! * [`momento-functions-log`](https://crates.io/crates/momento-functions-log): Standard `log` adapter.
12mod macros;