Files
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

40 lines
1.1 KiB
TOML

[package]
name = "playtime-api"
version = "0.1.0"
authors = ["Benjamin Klum <benjamin.klum@helgoboss.org>"]
edition = "2021"
publish = false
[dependencies]
serde.workspace = true
# For reusing common sound-related types that conveniently happen to be compatible with REAPER
reaper-common-types.workspace = true
# For exposing a runtime API within REAPER
reaper-low.workspace = true
# For being able to use the API macro
helgobox-macros.workspace = true
# For generating random IDs
nanoid.workspace = true
# For easier Display impl
derive_more.workspace = true
# For encoding/decoding a signed matrix value
rmp-serde.workspace = true
# For encoding/decoding a signed matrix value
base64.workspace = true
# For proper error types
thiserror.workspace = true
# For date/time persistence
chrono = { workspace = true, features = ["serde"] }
# For better error handling
anyhow.workspace = true
# For capturing and reporting unknown properties
serde_json.workspace = true
# For primitive enums
strum.workspace = true
# For primitive enums
num_enum.workspace = true
# For UTF-8 paths
camino = { workspace = true, features = ["serde1"] }
[lints.clippy]
enum_glob_use = "deny"