Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
PolyMeilex committed Dec 30, 2023
1 parent e6bb723 commit eb8decd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ i16-out = ["getrandom", "rand"]
sf3 = ["lewton"]

[dependencies]
bitflags = "^1.2"
bitflags = "2.4"
byte-slice-cast = "1.0.0"
byteorder = "1.4.3"
lazy_static = "1.4.0"
Expand All @@ -25,7 +25,7 @@ generational-arena = "0.2.8"
log = "0.4.14"

num-traits = "0.2"
num-derive = "0.3.3"
num-derive = "0.4"

soundfont = { version = "0.0.3", path = "./soundfont-rs" }

Expand All @@ -37,7 +37,7 @@ lewton = { version = "0.10.2", optional = true }
thiserror = "1.0.25"

[dev-dependencies]
env_logger = "0.8.3"
env_logger = "0.10"
byte-slice-cast = "1.0.0"

[[example]]
Expand Down
1 change: 1 addition & 0 deletions src/core/voice_pool/voice.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ const GEN_SET: u32 = 1;

bitflags::bitflags! {
/// Flags for marking samples for sanity checks
#[derive(Clone)]
struct SampleSanity: u32 {
const CHECK = 1 << 0;
const STARTUP = 1 << 1;
Expand Down

0 comments on commit eb8decd

Please sign in to comment.