From f7743da8e54279befab6d52a5b210c439a964d36 Mon Sep 17 00:00:00 2001 From: fzdwx Date: Wed, 2 Aug 2023 14:17:12 +0800 Subject: [PATCH] fix: adaptor export error caused by differences in Rust versions (#15) --- adaptor/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adaptor/src/lib.rs b/adaptor/src/lib.rs index 60a9d09c..84d907f7 100644 --- a/adaptor/src/lib.rs +++ b/adaptor/src/lib.rs @@ -6,7 +6,7 @@ mod sixel; mod ueberzug; pub use adaptor::*; -pub use image::*; +pub use crate::image::*; pub(self) use iterm2::*; pub(self) use kitty::*; pub(self) use sixel::*;