Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Run tests
run: cargo test --verbose --all-features
run: cargo test --all-targets --verbose --all-features
- name: Run no features
run: cargo test --all-targets --verbose --no-default-features

deny:
runs-on: ubuntu-24.04
Expand Down
59 changes: 58 additions & 1 deletion midi2/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,73 @@ pub mod utility;
pub mod buffer;
pub mod error;

mod detail;
#[cfg(any(
feature = "channel-voice1",
feature = "channel-voice2",
feature = "ci",
feature = "flex-data",
feature = "sysex7",
feature = "sysex8",
feature = "system-common",
feature = "ump-stream",
feature = "utility"
))]
mod message;
#[cfg(any(
feature = "channel-voice1",
feature = "channel-voice2",
feature = "ci",
feature = "flex-data",
feature = "sysex7",
feature = "sysex8",
feature = "system-common",
feature = "ump-stream",
feature = "utility"
))]
mod packet;
#[cfg(any(
feature = "channel-voice1",
feature = "channel-voice2",
feature = "ci",
feature = "flex-data",
feature = "sysex7",
feature = "sysex8",
feature = "system-common",
feature = "ump-stream",
feature = "utility"
))]
mod packets;

mod detail;
mod traits;

pub use ux;

#[cfg(any(
feature = "channel-voice1",
feature = "channel-voice2",
feature = "ci",
feature = "flex-data",
feature = "sysex7",
feature = "sysex8",
feature = "system-common",
feature = "ump-stream",
feature = "utility"
))]
pub use message::*;
#[cfg(any(
feature = "channel-voice1",
feature = "channel-voice2",
feature = "ci",
feature = "flex-data",
feature = "sysex7",
feature = "sysex8",
feature = "system-common",
feature = "ump-stream",
feature = "utility"
))]
pub use packets::*;

pub use traits::*;

pub mod num {
Expand Down