From f9599112c6940be49aaa4f837ea863a5cead47ff Mon Sep 17 00:00:00 2001 From: Ryo Yamashita Date: Mon, 6 Nov 2023 04:47:38 +0900 Subject: [PATCH] =?UTF-8?q?=E4=B8=8D=E8=A6=81=E3=81=AAreexport=E3=82=92?= =?UTF-8?q?=E5=89=8A=E9=99=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- crates/voicevox_core/src/infer/runtimes/onnxruntime.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/crates/voicevox_core/src/infer/runtimes/onnxruntime.rs b/crates/voicevox_core/src/infer/runtimes/onnxruntime.rs index 6efed2fa1..b6e12dfcb 100644 --- a/crates/voicevox_core/src/infer/runtimes/onnxruntime.rs +++ b/crates/voicevox_core/src/infer/runtimes/onnxruntime.rs @@ -2,6 +2,7 @@ use ndarray::{Array, Dimension}; use once_cell::sync::Lazy; use onnxruntime::{environment::Environment, GraphOptimizationLevel, LoggingLevel}; +use self::assert_send::AssertSend; use crate::{ devices::SupportedDevices, error::ErrorRepr, @@ -11,8 +12,6 @@ use crate::{ }, }; -pub(crate) use self::assert_send::AssertSend; - #[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)] pub(crate) enum Onnxruntime {}