1
0
mirror of https://github.com/ndarilek/tts-rs.git synced 2024-07-27 07:09:37 +00:00

Make formatting more consistent.

This commit is contained in:
Nolan Darilek 2022-01-10 10:51:18 -06:00
parent cdc225418e
commit 9066d2b005

View File

@ -1,14 +1,18 @@
#[cfg(target_os = "android")]
use std::collections::HashSet;
use std::ffi::{CStr, CString};
use std::os::raw::c_void;
use std::sync::{Mutex, RwLock};
use std::thread;
use std::time::{Duration, Instant};
use std::{
collections::HashSet,
ffi::{CStr, CString},
os::raw::c_void,
sync::{Mutex, RwLock},
thread,
time::{Duration, Instant},
};
use jni::objects::{GlobalRef, JObject, JString};
use jni::sys::{jfloat, jint, JNI_VERSION_1_6};
use jni::{JNIEnv, JavaVM};
use jni::{
objects::{GlobalRef, JObject, JString},
sys::{jfloat, jint, JNI_VERSION_1_6},
JNIEnv, JavaVM,
};
use lazy_static::lazy_static;
use log::{error, info};