1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[]
= "midly"
= "0.5.3"
= "2018"
= ["negamartin"]
= [
"/src/*",
"/Cargo.toml",
]
= "Fast MIDI decoder and encoder both for .mid files and real-time MIDI events"
= "https://github.com/negamartin/midly"
= "README.md"
= ["midi", "no_std", "audio", "parser"]
= ["multimedia::audio", "multimedia::encoding", "multimedia"]
= "Unlicense"
[]
= ["alloc", "std", "parallel"]
# Reject corrupted or uncompliant files, even if they could be read anyway.
#
# `ErrorKind::Malformed` errors will only be raised when this feature is enabled.
= []
# Enable the `alloc` dependency.
#
# Disabling this feature leaves pretty much only the raw `parse` and `write` functions, but makes
# the crate fully `no_std`.
# If this feature is enabled, but the `std` feature is not, the crate becomes `no_std + alloc`.
= []
# Integrate with the `std` library.
# Depends on the `alloc` feature.
= ["alloc"]
# Enable multithreaded parsing.
# Depends on the `std` feature.
#
# Multithreaded parsing is automatically disabled for tiny MIDI files.
# Currently, multithreading brings in the `rayon` dependency.
= ["std", "rayon"]
[]
= { ="1", = true }