-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathCargo.toml
37 lines (36 loc) · 1.1 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
[package]
name = "playtime-api"
version = "0.1.0"
authors = ["Benjamin Klum <[email protected]>"]
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"] }