1 pub mod sockets; 2 3 wit_bindgen::generate!({ 4 inline: " 5 package wasmtime:test; 6 7 world testp3 { 8 include wasi:cli/imports@0.3.0; 9 10 export wasi:cli/run@0.3.0; 11 } 12 ", 13 path: "../wasi/src/p3/wit", 14 world: "wasmtime:test/testp3", 15 default_bindings_module: "test_programs::p3", 16 pub_export_macro: true, 17 async: [ 18 "wasi:cli/run@0.3.0#run", 19 ], 20 generate_all 21 }); 22