-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
33 lines (29 loc) · 848 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
[package]
name = "augmented-midi"
version = "1.8.0"
edition = "2021"
description = "Experimental MIDI file/event parser using nom combinators"
license = "MIT"
homepage = "https://github.com/yamadapc/augmented-audio"
repository = "https://github.com/yamadapc/augmented-audio"
exclude = [
"test-files",
"midir",
"bach_846.mid"
]
[dependencies]
audio-processor-traits = { path = "../../audio/audio-processor-traits" , version = "4.3.0" }
nom = "7.1.0"
cookie-factory = "0.3"
[dev-dependencies]
criterion = "0.4"
wisual-logger = { version = "0.1", path = "../../ops/wisual-logger" }
log = "0.4.14"
itertools = "0.10.1"
assert_no_alloc = { version = "1.1.2", features = ["disable_release"], default-features = false }
midir = "0.8"
[[bench]]
name = "augmented_midi_criterion"
harness = false
[package.metadata.augmented]
private = false