Skip to content

Commit

Permalink
Merge branch 'master' of github.com:arduano/wasabi
Browse files Browse the repository at this point in the history
  • Loading branch information
arduano committed Nov 25, 2023
2 parents ba3273f + 105ea96 commit e01c873
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wasabi"
version = "0.1.2"
version = "0.1.3"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -13,7 +13,7 @@ vulkano-util = "0.33.0"
egui-winit = "0.21.1"
bytemuck = "1.13.1"
vulkano = "0.33.0"
kdmapi = { git = "https://github.com/arduano/kdmapi.git", rev = "9329cfc" }
kdmapi = { git = "https://github.com/arduano/kdmapi.git", rev = "4116b00" }
egui = "0.21.0"
winit = "0.28.3"
rayon = "1.7.0"
Expand Down
2 changes: 1 addition & 1 deletion src/midi/cake/tree_threader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ impl ThreadedTreeSerializers {
let trees = Arc::try_unwrap(self.trees).unwrap().into_inner().unwrap();

let mut serialized = Vec::new();
for (_i, tree) in trees.into_iter().enumerate() {
for tree in trees.into_iter() {
let sealed = tree.complete_and_seal(time);
serialized.push(sealed);
}
Expand Down

0 comments on commit e01c873

Please sign in to comment.