Adjust PR 175: keep only selected changes
This commit is contained in:
parent
9e42085ff3
commit
80e0cb8baf
3 changed files with 2417 additions and 1144 deletions
3515
app/Cargo.lock
generated
3515
app/Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -10,27 +10,28 @@ edition = "2021"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
serde = { version = "1.0.164", features = ["derive"] }
|
serde = { version = "1.0.197", features = ["derive"] }
|
||||||
serde_json = "1.0.96"
|
serde_json = "1.0.114"
|
||||||
hound = "3.5.0"
|
hound = "3.5.1"
|
||||||
pv_recorder = "1.1.2"
|
# pv_recorder = "1.2.2"
|
||||||
pv_porcupine = "2.2.1"
|
# pv_porcupine = "3.0.2"
|
||||||
seqdiff = "0.3.0"
|
seqdiff = "0.3.0"
|
||||||
vosk = "0.2.0"
|
vosk = "0.3.1"
|
||||||
rand = "0.8.5"
|
rand = "0.9.0-alpha.1"
|
||||||
rodio = "0.17.1"
|
rodio = "0.21.1"
|
||||||
rustpotter = "2.0.0"
|
rustpotter = "3.0.2"
|
||||||
log = "0.4.18"
|
log = "0.4.21"
|
||||||
once_cell = "1.18.0"
|
once_cell = "1.19.0"
|
||||||
atomic_enum = "0.2.0"
|
atomic_enum = "0.3.0"
|
||||||
portaudio = "0.7.0"
|
portaudio = "0.8.0"
|
||||||
platform-dirs = "0.3.0"
|
platform-dirs = "0.3.0"
|
||||||
simple-log = "1.6.0"
|
simple-log = "2.4.0"
|
||||||
tray-icon = "0.5.1"
|
tray-icon = { version = "0.21.2" }
|
||||||
winit = "0.28.6"
|
winit = "0.30.12"
|
||||||
image = "0.24.6"
|
image = "0.25.9"
|
||||||
serde_yaml = "0.9.21"
|
serde_yaml = "0.9.33"
|
||||||
kira = "0.8.3"
|
kira = "0.11.0"
|
||||||
gtk = "0.16.0"
|
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
default = ["jarvis_app"]
|
||||||
|
jarvis_app = [] # feature flag saying this is an app
|
||||||
|
|
@ -58,7 +58,10 @@ pub fn init() {
|
||||||
}
|
}
|
||||||
|
|
||||||
// run the event loop
|
// run the event loop
|
||||||
let event_loop = EventLoopBuilder::new().build();
|
let event_loop = EventLoopBuilder::new()
|
||||||
|
// .with_any_thread(true)
|
||||||
|
.build()
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
let menu_channel = MenuEvent::receiver();
|
let menu_channel = MenuEvent::receiver();
|
||||||
let tray_channel = TrayEvent::receiver();
|
let tray_channel = TrayEvent::receiver();
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue