-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (40 loc) · 1021 Bytes
/
Cargo.toml
File metadata and controls
50 lines (40 loc) · 1021 Bytes
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
43
44
45
46
47
48
49
50
[workspace]
members = [
"crates/batcherbird-core",
"crates/batcherbird-cli",
"crates/batcherbird-vizia",
# Note: batcherbird-gui/src-tauri has its own workspace and is built via `npm run tauri build`
]
resolver = "2"
[workspace.package]
license = "AGPL-3.0-or-later"
repository = "https://github.com/ddri/batcherbird"
authors = ["David Ryan"]
[workspace.dependencies]
# Audio/MIDI core dependencies
midir = "0.10.1"
cpal = "0.16.0"
hound = "3.5"
# Async runtime
tokio = { version = "1.35", features = ["full"] }
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
# Error handling
anyhow = "1.0"
thiserror = "1.0"
# CLI
clap = { version = "4.4", features = ["derive"] }
# Logging
tracing = "0.1"
tracing-subscriber = "0.3"
# UUID for session IDs
uuid = { version = "1.0", features = ["v4", "serde"] }
# Time handling
chrono = { version = "0.4", features = ["serde"] }
[profile.release]
lto = true
codegen-units = 1
strip = "symbols"
panic = "abort"