-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (24 loc) · 713 Bytes
/
Cargo.toml
File metadata and controls
29 lines (24 loc) · 713 Bytes
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
[package]
authors = ["wmedrano <will.s.medrano@gmail.com>"]
description = "Midi parsing library."
documentation = "https://docs.rs/wmidi"
keywords = ["midi", "music", "audio", "realtime", "real-time"]
license = "MIT"
name = "wmidi"
readme = "README.md"
repository = "https://github.com/RustAudio/wmidi"
version = "4.0.11"
[lib]
# Required to pass flags to criterion benchmark.
# https://bheisler.github.io/criterion.rs/book/faq.html#cargo-bench-gives-unrecognized-option-errors-for-valid-command-line-options
bench = false
[dependencies]
[dev-dependencies]
criterion = "0.8"
[features]
# Meta-features:
default = ["std"] # Without "std", wmidi uses libcore.
std = []
[[bench]]
harness = false
name = "bench"