Skip to content

Commit

Permalink
fix lints
Browse files Browse the repository at this point in the history
  • Loading branch information
xasopheno committed Nov 17, 2024
1 parent dc01a4e commit de8b16e
Show file tree
Hide file tree
Showing 10 changed files with 91 additions and 83 deletions.
150 changes: 80 additions & 70 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion actions/bumper_cool/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13239,4 +13239,4 @@ module.exports = JSON.parse('[[[0,44],"disallowed_STD3_valid"],[[45,46],"valid"]
/******/
/******/ })()
;
//# sourceMappingURL=index.js.map
//# sourceMappingURL=index.js.map
4 changes: 2 additions & 2 deletions core/src/portaudio/real_time_render_manager_mic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,15 @@ fn process_detection_result(result: &mut DetectionResult) -> (f64, f64) {
fn get_duplex_settings(pa: &pa::PortAudio) -> Result<pa::stream::DuplexSettings<f32, f32>, Error> {
let def_input = pa.default_input_device()?;
let input_info = pa.device_info(def_input)?;
println!("Default input device info: {:#?}", &input_info);
// println!("Default input device info: {:#?}", &input_info);

let latency = input_info.default_low_input_latency;
let input_params =
pa::StreamParameters::<f32>::new(def_input, 1, Settings::global().interleaved, latency);

let def_output = pa.default_output_device()?;
let output_info = pa.device_info(def_output)?;
println!("Default output device info: {:#?}", &output_info);
// println!("Default output device info: {:#?}", &output_info);

let latency = output_info.default_low_output_latency;
let output_params = pa::StreamParameters::new(
Expand Down
2 changes: 1 addition & 1 deletion instrument/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license = "GPL-3.0"

[dependencies]
weresocool_ast = { path = "../ast", version = "^1.0.47", default-features=false, optional=true }
weresocool_error = { path = "../error", version = "^1.0.47", default0features=false, optional=true }
weresocool_error = { path = "../error", version = "^1.0.47", default-features=false, optional=true }
weresocool_filter = { path = "../filter", version = "^1.0.45" }
weresocool_parser = { path = "../parser", version = "^1.0.47", default-features=false, optional=true }
weresocool_shared = { path = "../shared", version = "^1.0.47" }
Expand Down
1 change: 1 addition & 0 deletions instrument/reverb/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "reverb"
version = "1.0.47"
edition = "2021"
authors = ["josh, [email protected]"]
description = "A super-fast mono-to-stereo plate reverberator."
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion instrument/reverb/src/reverb.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
use delay_line::{Buffer, DelayLine};
use crate::delay_line::{Buffer, DelayLine};

#[derive(Copy, Clone, Debug, PartialEq)]
struct OnePole {
Expand Down
4 changes: 2 additions & 2 deletions parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ license = "GPL-3.0"
resolver="2"

[build-dependencies.lalrpop]
version = "0.19.12"
version = "0.22.0"
features = ["lexer"]

[dependencies]
weresocool_ast = { path = "../ast", version = "^1.0.47", default-features=false, optional=true }
weresocool_error = { path = "../error", version = "^1.0.47", default-features=false, optional=true }
weresocool_shared = { path = "../shared", version = "^1.0.47" }
scop = { path = "../scop", version = "^1.0.47" }
lalrpop-util = { version="0.19.12", features=["lexer"]}
lalrpop-util = { version="0.22.0", features=["lexer"]}
regex = "1.5.4"
colored = "2.0.0"
num-rational = "0.4.1"
Expand Down
Loading

0 comments on commit de8b16e

Please sign in to comment.