-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
48 lines (42 loc) · 943 Bytes
/
Cargo.toml
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
45
46
47
48
[package]
name = "midi2"
version = "0.7.0"
description = "Ergonomic, versatile, strong types wrapping MIDI 2.0 message data."
edition = "2021"
readme = "README.md"
license = "MIT OR Apache-2.0"
authors = [
"Ben Leadbetter <[email protected]>",
]
repository = "https://github.com/midi2-dev/bl-midi2-rs.git"
[workspace]
members = [
"midi2_proc",
"fuzz",
]
[lib]
name = "midi2"
path = "src/lib.rs"
[features]
default = ["std", "channel-voice2"]
# wip
ci = ["sysex7"]
flex-data = []
channel-voice1 = []
channel-voice2 = []
std = []
sysex7 = []
sysex8 = []
system-common = []
ump-stream = []
utility = []
[dependencies]
derive_more = { version = "0.99.17", features = ["from"], default-features = false }
fixed = "1.27.0"
midi2_proc = { version = "0.7.0", path = "midi2_proc" }
ux = "0.1.6"
[dev-dependencies]
pretty_assertions = "1.4.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]