Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
simon-wh committed May 24, 2021
1 parent e7a7eed commit b0b2b2d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src-tauri/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
)]

extern crate env_logger;
extern crate wooting_analog_midi;
extern crate wooting_analog_midi_core;
#[macro_use]
extern crate lazy_static;
// #[macro_use]
Expand All @@ -18,7 +18,7 @@ use std::sync::atomic::{AtomicBool, Ordering};
use std::sync::{Arc, RwLock};
use std::thread;
use std::thread::{sleep, JoinHandle};
use wooting_analog_midi::{
use wooting_analog_midi_core::{
Channel, DeviceInfo, MidiService, NoteID, PortOption, WootingAnalogResult, REFRESH_RATE,
};
mod settings;
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/src/settings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use std::fs::OpenOptions;
use std::io::{Read, Write};
use std::path::PathBuf;
use tauri::api::path::config_dir;
use wooting_analog_midi::{Channel, FromPrimitive, HIDCodes, NoteConfig, NoteID};
use wooting_analog_midi_core::{Channel, FromPrimitive, HIDCodes, NoteConfig, NoteID};

fn default_shift_amount() -> i8 {
12
Expand Down

0 comments on commit b0b2b2d

Please sign in to comment.