Files
virtual-controller/plugin-reaper-relearn/main/lib/helgoboss-learn/Cargo.toml
T
Paul Lipscomb 7ecc718f5d Reorganize top-level directories with clearer naming convention
app -> app-desktop-macos, presets -> app-presets, server -> remote-server,
daw-config-reaper -> osc-config-daw, plugin-reaper-realearn -> plugin-reaper-relearn.
Updated run.py and presets.py path references accordingly.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-07-15 17:51:05 -04:00

43 lines
1.4 KiB
TOML

[package]
name = "helgoboss-learn"
version = "0.1.0"
authors = ["Benjamin Klum <benjamin.klum@helgoboss.org>"]
edition = "2021"
publish = false
[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"] }