-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
42 lines (41 loc) · 1.36 KB
/
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
[package]
name = "helgoboss-learn"
version = "0.1.0"
authors = ["Benjamin Klum <[email protected]>"]
edition = "2021"
[dependencies]
base.workspace = true
helgoboss-midi.workspace = true
tracing.workspace = true
num.workspace = true
num_enum.workspace = true
approx.workspace = true
derive_more.workspace = true
serde.workspace = true
serde_repr.workspace = true
# For being able to (de)serialize using FromStr
serde_with.workspace = true
lazycell.workspace = true
# For being able to exclude some fields from the hash function (necessary for ignoring already learned sources)
derivative.workspace = true
# For OSC
rosc.workspace = true
# For using the Bpm type
reaper-common-types.workspace = true
# For letting the here defined raw MIDI data structure implement the REAPER MIDI event type
reaper-low = { workspace = true, optional = true }
# For RgbColor type conversion
image = { workspace = true, default-features = false }
# For tokenizing sys-ex patterns
logos.workspace = true
# For easy error types
thiserror.workspace = true
partial-min-max = "0.4.0"
nom.workspace = true
regex.workspace = true
once_cell.workspace = true
# For convenient converting of OSC feedback arg prop to enum variant and back
strum.workspace = true
serde_json.workspace = true
# For making consumers being able to use some newtypes as atomics
bytemuck = { workspace = true, features = ["derive"] }