# Standalone example — NOT a workspace member. # # Build with: # cd examples/echo # cargo build --release --target wasm32-wasip2 [package] name = "echo_example" version = "0.1.0" edition = "2024" license = "Apache-2.0" publish = false description = "Reference module showing the minimum needed to write an F∆I module with fai-module-sdk." [lib] crate-type = ["cdylib"] [dependencies] fai-module-sdk = { path = "../../crates/fai-module-sdk" } [profile.release] opt-level = "s" lto = true codegen-units = 1 strip = "symbols" [workspace] # Empty workspace table so this package is NOT picked up by a parent.