From 936fe35acb89e8c77810a7ead4def29ef27f083e Mon Sep 17 00:00:00 2001 From: Chen TaoTao Date: Fri, 28 Oct 2022 15:33:19 +0800 Subject: [PATCH] runtime-rs : fix shim source is ambiguous In the documentation test, the name shim has multiple potential sources of import, now give it a clear source. Fixes: #5535 Signed-off-by: Chen TaoTao --- src/runtime-rs/crates/shim/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/runtime-rs/crates/shim/src/lib.rs b/src/runtime-rs/crates/shim/src/lib.rs index 2b419061c8..59bf22adad 100644 --- a/src/runtime-rs/crates/shim/src/lib.rs +++ b/src/runtime-rs/crates/shim/src/lib.rs @@ -16,7 +16,7 @@ pub use error::Error; mod logger; mod panic_hook; mod shim; -pub use shim::ShimExecutor; +pub use crate::shim::ShimExecutor; mod core_sched; #[rustfmt::skip] pub mod config;