This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

🚨 Fix linting and compiler warninigs

+13 -13
+1 -1
src/cli/watch.rs
··· 44 44 wx.config.throttle(Duration::from_secs(1)); 45 45 46 46 // TODO handle miette diagnostics 47 - wx.main().await?; 47 + let _ = wx.main().await?; 48 48 Ok(()) 49 49 }
+1 -1
src/vst/mod.rs
··· 1 1 pub mod beacon; 2 - pub mod remote_probe; 3 2 pub mod probe; 3 + pub mod remote_probe; 4 4 pub mod vst; 5 5 6 6 use nih_plug::{nih_export_clap, nih_export_vst3};
+11 -11
src/vst/vst.rs
··· 1 - use super::{probe::Datapoint, remote_probe::RemoteProbe}; 1 + use super::remote_probe::RemoteProbe; 2 2 use nih_plug::prelude::*; 3 3 use rand::Rng; 4 4 use std::sync::Arc; ··· 132 132 ) -> ProcessStatus { 133 133 let ts = RemoteProbe::timestamp(); 134 134 // self.probe.say(format!("{} sending data", ts)); 135 - self.probe.store_automation(ts, 1, &self.params.param1); 136 - self.probe.store_automation(ts, 2, &self.params.param2); 137 - self.probe.store_automation(ts, 3, &self.params.param3); 138 - self.probe.store_automation(ts, 4, &self.params.param4); 139 - self.probe.store_automation(ts, 4, &self.params.param4); 140 - self.probe.store_automation(ts, 5, &self.params.param5); 141 - self.probe.store_automation(ts, 6, &self.params.param6); 142 - self.probe.store_automation(ts, 7, &self.params.param7); 143 - self.probe.store_automation(ts, 8, &self.params.param8); 144 - self.probe.store_automation(ts, 9, &self.params.param9); 135 + let _ = self.probe.store_automation(ts, 1, &self.params.param1); 136 + let _ = self.probe.store_automation(ts, 2, &self.params.param2); 137 + let _ = self.probe.store_automation(ts, 3, &self.params.param3); 138 + let _ = self.probe.store_automation(ts, 4, &self.params.param4); 139 + let _ = self.probe.store_automation(ts, 4, &self.params.param4); 140 + let _ = self.probe.store_automation(ts, 5, &self.params.param5); 141 + let _ = self.probe.store_automation(ts, 6, &self.params.param6); 142 + let _ = self.probe.store_automation(ts, 7, &self.params.param7); 143 + let _ = self.probe.store_automation(ts, 8, &self.params.param8); 144 + let _ = self.probe.store_automation(ts, 9, &self.params.param9); 145 145 // self.probe.say(format!("{} sent automation", ts)); 146 146 147 147 // self.probe.store_audio(