Skip to content

Commit

Permalink
Fix CI errors
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikNatanael committed Jan 1, 2024
1 parent 40b0c77 commit b15230a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
26 changes: 13 additions & 13 deletions knyst/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ slotmap = "1.0"
# For ergonomic error handling
thiserror = "1.0"
# For real time safe communication between threads
rtrb = "0.2"
rtrb = "0.3"
fastrand = "2.0.1"
# Fast approximation of common float math. Probably under BSD-3.
fastapprox = "0.3"
Expand Down Expand Up @@ -81,24 +81,19 @@ path = "macro_tests/macro_tests_main.rs"
name = "large_sine_graph"
harness = false

[[example]]
name = "jack_example"
path = "examples/jack_example.rs"
required-features = ["jack"]

[[example]]
name = "modal_example"
path = "examples/modal_example.rs"
required-features = ["jack", "cpal"]

[[example]]
name = "beat_callbacks"
path = "examples/beat_callbacks.rs"
required-features = ["cpal"]

[[example]]
name = "cpal_example"
path = "examples/cpal_example.rs"
name = "simple_example"
path = "examples/simple_example.rs"
required-features = ["cpal"]

[[example]]
name = "more_advanced_example"
path = "examples/more_advanced_example.rs"
required-features = ["cpal"]

[[example]]
Expand All @@ -110,3 +105,8 @@ required-features = ["cpal"]
name = "sound_file_playback"
path = "examples/sound_file_playback.rs"
required-features = ["cpal"]

[[example]]
name = "write_your_own_gen"
path = "examples/write_your_own_gen.rs"
required-features = ["cpal"]
2 changes: 1 addition & 1 deletion knyst_macro/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ impl GenImplData {
knyst::handles::Input::Constant(v) => {
let change = knyst::graph::ParameterChange {
time: knyst::graph::Time::Immediately,
input: (self.node_id,
input: (self.node_id,
knyst::graph::connection::NodeChannel::Label(#param_string)).into(),
value: knyst::graph::Change::Constant(v),
};
Expand Down

0 comments on commit b15230a

Please sign in to comment.