[package]
edition = "2024"
name = "midi-msg"
version = "0.8.2"
authors = ["Alex Charlton"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A (eventually) complete representation of the MIDI 1.0 Detailed Specification and its many extensions and addenda, allowing for the serialization and deserialization of MIDI byte streams to and from a typed representation."
homepage = "https://github.com/AlexCharlton/midi-msg"
documentation = "https://docs.rs/midi-msg"
readme = "readme.md"
keywords = [
"midi",
"music",
"smf",
"no_std",
]
license = "MIT"
repository = "https://github.com/AlexCharlton/midi-msg"
[features]
default = [
"std",
"sysex",
"file",
]
file = ["sysex"]
std = [
"strum",
"log",
]
sysex = ["bstr"]
[lib]
name = "midi_msg"
path = "src/lib.rs"
[[example]]
name = "read_mtc_from_input"
path = "examples/read_mtc_from_input.rs"
[[example]]
name = "test_read_input"
path = "examples/test_read_input.rs"
[[test]]
name = "file_test"
path = "tests/file_test.rs"
[dependencies.bstr]
version = "1.0.0"
features = ["alloc"]
optional = true
default-features = false
[dependencies.log]
version = "0.4"
optional = true
[dependencies.micromath]
version = "1.1.1"
[dependencies.strum]
version = "0.24.1"
features = ["derive"]
optional = true
[dev-dependencies.midir]
version = "0.8.0"