Skip to content

Commit

Permalink
Move coremidi overrides to target-specific deps section
Browse files Browse the repository at this point in the history
  • Loading branch information
arteme committed Nov 21, 2024
1 parent d2e9e24 commit fb63d6a
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ async-trait = "0.1.81"
bitflags = "1.3.2"
once_cell = "1.14.0"
midir = "0.10.1"
coremidi = "0.8.0" # fix coremidi to 0.8.0 because 0.8.1 is not published, fix unaligned pointer access
coremidi-sys = "3.1.1" # fix coremidi-sys to 3.1.1 because coremidi 0.8.1 is not published, fix unaligned pointer access
log = "0.4.8"
anyhow = { version = "1.0", features = ["backtrace"] }
arrayref = "0.3.6"
Expand All @@ -22,4 +20,8 @@ strfmt = "0.1.6"
futures = "0.3.19"
futures-util = "0.3.19"
result = "1.0.0"
unicycle = { version = "0.10.1", features = ['futures-rs'] }
unicycle = { version = "0.10.1", features = ['futures-rs'] }

[target.'cfg(target_os = "macos")'.dependencies]
coremidi = "0.8.0" # fix coremidi to 0.8.0 because 0.8.1 is not published, fix unaligned pointer access
coremidi-sys = "3.1.1" # fix coremidi-sys to 3.1.1 because coremidi 0.8.1 is not published, fix unaligned pointer access

0 comments on commit fb63d6a

Please sign in to comment.