PC Music Generator - a Virtual Modular Synthesizer

Small fixes

+54 -3
+50
Cargo.lock
··· 1328 1328 ] 1329 1329 1330 1330 [[package]] 1331 + name = "futures" 1332 + version = "0.3.29" 1333 + source = "registry+https://github.com/rust-lang/crates.io-index" 1334 + checksum = "da0290714b38af9b4a7b094b8a37086d1b4e61f2df9122c3cad2577669145335" 1335 + dependencies = [ 1336 + "futures-channel", 1337 + "futures-core", 1338 + "futures-executor", 1339 + "futures-io", 1340 + "futures-sink", 1341 + "futures-task", 1342 + "futures-util", 1343 + ] 1344 + 1345 + [[package]] 1346 + name = "futures-channel" 1347 + version = "0.3.29" 1348 + source = "registry+https://github.com/rust-lang/crates.io-index" 1349 + checksum = "ff4dd66668b557604244583e3e1e1eada8c5c2e96a6d0d6653ede395b78bbacb" 1350 + dependencies = [ 1351 + "futures-core", 1352 + "futures-sink", 1353 + ] 1354 + 1355 + [[package]] 1331 1356 name = "futures-core" 1332 1357 version = "0.3.29" 1333 1358 source = "registry+https://github.com/rust-lang/crates.io-index" 1334 1359 checksum = "eb1d22c66e66d9d72e1758f0bd7d4fd0bee04cad842ee34587d68c07e45d088c" 1335 1360 1336 1361 [[package]] 1362 + name = "futures-executor" 1363 + version = "0.3.29" 1364 + source = "registry+https://github.com/rust-lang/crates.io-index" 1365 + checksum = "0f4fb8693db0cf099eadcca0efe2a5a22e4550f98ed16aba6c48700da29597bc" 1366 + dependencies = [ 1367 + "futures-core", 1368 + "futures-task", 1369 + "futures-util", 1370 + ] 1371 + 1372 + [[package]] 1337 1373 name = "futures-io" 1338 1374 version = "0.3.29" 1339 1375 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1368 1404 ] 1369 1405 1370 1406 [[package]] 1407 + name = "futures-macro" 1408 + version = "0.3.29" 1409 + source = "registry+https://github.com/rust-lang/crates.io-index" 1410 + checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb" 1411 + dependencies = [ 1412 + "proc-macro2 1.0.70", 1413 + "quote 1.0.33", 1414 + "syn 2.0.39", 1415 + ] 1416 + 1417 + [[package]] 1371 1418 name = "futures-sink" 1372 1419 version = "0.3.29" 1373 1420 source = "registry+https://github.com/rust-lang/crates.io-index" ··· 1385 1432 source = "registry+https://github.com/rust-lang/crates.io-index" 1386 1433 checksum = "a19526d624e703a3179b3d322efec918b6246ea0fa51d41124525f00f1cc8104" 1387 1434 dependencies = [ 1435 + "futures-channel", 1388 1436 "futures-core", 1389 1437 "futures-io", 1438 + "futures-macro", 1390 1439 "futures-sink", 1391 1440 "futures-task", 1392 1441 "memchr", ··· 2601 2650 "eframe", 2602 2651 "egui", 2603 2652 "emath", 2653 + "futures", 2604 2654 "getrandom", 2605 2655 "js-sys", 2606 2656 "log",
+3 -2
rack-designer/Cargo.toml
··· 14 14 serde = "1.0.184" 15 15 serde_yaml = "0.9" 16 16 uuid = { version = "1.6", features = ["v4", "serde"] } 17 - log = "*" 17 + log = "0.4" 18 + futures = "0.3" 18 19 19 20 [target.'cfg(not(target_arch = "wasm32"))'.dependencies] 20 - simple_logger = "*" 21 + simple_logger = "4.3" 21 22 22 23 [target.'cfg(target_arch = "wasm32")'.dependencies] 23 24 wasm-bindgen-futures = "0.4"
+1 -1
rack-designer/src/main.rs
··· 14 14 15 15 #[cfg(target_arch = "wasm32")] 16 16 fn main() { 17 - console_log::init_with_level(log::Level::Debug); 17 + console_log::init_with_level(log::Level::Debug).unwrap(); 18 18 wasm_bindgen_futures::spawn_local(async { 19 19 eframe::WebRunner::new() 20 20 .start(