Files
wasmeld/crates/wasmeld-runtime/src/bindings.rs
T
Maofeng 5b32886efe feat(runtime): modularize host capabilities
- add an exact-version Capability Registry and structured descriptors
- move Clock bindings, host state, and Linker installation into its own module
- derive required capabilities from Component imports and link only requested interfaces
- cover exact-version resolution and minimal per-component capability sets
2026-07-29 19:13:35 +08:00

8 lines
265 B
Rust

//! Typed host and guest bindings generated from independently versioned WIT packages.
// The service world defines the exports every runnable component implements.
wasmtime::component::bindgen!({
path: "../../wit/service",
world: "service-component",
});