Initial commit

This commit is contained in:
2025-12-30 15:12:26 +01:00
commit 5934d24f7f
38 changed files with 7636 additions and 0 deletions

29
src-tauri/check_log.txt Normal file
View File

@@ -0,0 +1,29 @@
Checking radio-tauri v0.1.0 (D:\Sites\Work\Radio1\radio-tauri\src-tauri)
warning: variable does not need to be mutable
--> src\lib.rs:38:9
|
38 | let mut device = CastDevice::connect_without_host_verification(ip_addr.to_string(), 8009)
| ----^^^^^^
| |
| help: remove this `mut`
|
= note: `#[warn(unused_mut)]` (part of `#[warn(unused)]`) on by default
warning: variable does not need to be mutable
--> src\lib.rs:75:9
|
75 | let mut device = CastDevice::connect_without_host_verification(ip_addr.to_string(), 8009)
| ----^^^^^^
| |
| help: remove this `mut`
warning: variable does not need to be mutable
--> src\lib.rs:99:9
|
99 | let mut device = CastDevice::connect_without_host_verification(ip_addr.to_string(), 8009)
| ----^^^^^^
| |
| help: remove this `mut`
warning: `radio-tauri` (lib) generated 3 warnings (run `cargo fix --lib -p radio-tauri` to apply 3 suggestions)
Finished `dev` profile [unoptimized + debuginfo] target(s) in 1.78s