chain-module-sdk-rust/examples/echo/Cargo.toml
flemming-it a4415ada7e
Some checks failed
CI / Linux x86_64 (Forgejo) (push) Failing after 1s
feat(sdk)!: drop the #[fai_module] alias — #[chain_module] only
No module outside this workspace was ever published against the
alias (the system has no external users yet), so the pre-rename
name goes away instead of being maintained: one attribute, no
legacy surface. All internal doc references swept; echo example
description moves to the product name. 0.3.0.

Signed-off-by: flemming-it <sf@flemming.it>
2026-07-11 19:47:34 +02:00

28 lines
625 B
TOML

# 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 a Ch∆In module with chain-module-sdk."
[lib]
crate-type = ["cdylib"]
[dependencies]
chain-module-sdk = { path = "../../crates/chain-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.