e58f06d9fa
Stripped upstream git history; starting point for replacing the native SWELL/Win32 mapping UI with something more suited to bulk editing. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
40 lines
1.1 KiB
TOML
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" |