diff --git a/crates/wit-bindgen/src/examples/_1_interface_imports.rs b/crates/wit-bindgen/src/examples/_1_interface_imports.rs index 6884b612..8654f10c 100644 --- a/crates/wit-bindgen/src/examples/_1_interface_imports.rs +++ b/crates/wit-bindgen/src/examples/_1_interface_imports.rs @@ -28,6 +28,8 @@ crate::generate!({ anyhow_path: "anyhow", bytes_path: "bytes", futures_path: "futures", + tokio_util_path: "tokio_util", + wasm_tokio_path: "wasm_tokio", wrpc_transport_path: "wrpc_transport", path: "wasi-cli@0.2.0.wasm", diff --git a/crates/wit-bindgen/src/examples/_2_imported_resources.rs b/crates/wit-bindgen/src/examples/_2_imported_resources.rs index 92a92926..fcef8f04 100644 --- a/crates/wit-bindgen/src/examples/_2_imported_resources.rs +++ b/crates/wit-bindgen/src/examples/_2_imported_resources.rs @@ -25,5 +25,7 @@ crate::generate!({ anyhow_path: "anyhow", bytes_path: "bytes", futures_path: "futures", + tokio_util_path: "tokio_util", + wasm_tokio_path: "wasm_tokio", wrpc_transport_path: "wrpc_transport", }); diff --git a/crates/wit-bindgen/src/examples/_3_world_exports.rs b/crates/wit-bindgen/src/examples/_3_world_exports.rs index 762d8318..b09c58eb 100644 --- a/crates/wit-bindgen/src/examples/_3_world_exports.rs +++ b/crates/wit-bindgen/src/examples/_3_world_exports.rs @@ -37,6 +37,7 @@ crate::generate!({ bytes_path: "bytes", futures_path: "futures", tokio_path: "tokio", + tokio_util_path: "tokio_util", tracing_path: "tracing", wrpc_transport_path: "wrpc_transport", diff --git a/crates/wit-bindgen/src/examples/_4_exported_resources.rs b/crates/wit-bindgen/src/examples/_4_exported_resources.rs index d4981457..4f3e836a 100644 --- a/crates/wit-bindgen/src/examples/_4_exported_resources.rs +++ b/crates/wit-bindgen/src/examples/_4_exported_resources.rs @@ -29,5 +29,9 @@ crate::generate!({ anyhow_path: "anyhow", bytes_path: "bytes", futures_path: "futures", + tokio_path: "tokio", + tokio_util_path: "tokio_util", + tracing_path: "tracing", + wasm_tokio_path: "wasm_tokio", wrpc_transport_path: "wrpc_transport", });