-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (40 loc) · 1.11 KB
/
Cargo.toml
File metadata and controls
43 lines (40 loc) · 1.11 KB
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
[workspace]
resolver = "3"
members = [
"bbx_core",
"bbx_draw",
"bbx_dsp",
"bbx_file",
"bbx_midi",
"bbx_net",
"bbx_player",
"bbx_plugin",
"bbx_sandbox",
]
[workspace.package]
version = "0.4.3"
authors = ["Black Box Audio, LLC"]
edition = "2024"
license = "MIT"
repository = "https://github.com/blackboxaudio/bbx_audio"
rust-version = "1.89.0"
[workspace.dependencies]
# Internal crates (version + path for publishing)
bbx_core = { version = "0.4.3", path = "bbx_core" }
bbx_dsp = { version = "0.4.3", path = "bbx_dsp" }
bbx_file = { version = "0.4.3", path = "bbx_file" }
bbx_midi = { version = "0.4.3", path = "bbx_midi", default-features = false }
bbx_net = { version = "0.4.3", path = "bbx_net", default-features = false }
bbx_player = { version = "0.4.3", path = "bbx_player", default-features = false }
bbx_plugin = { version = "0.4.3", path = "bbx_plugin" }
# External dependencies
cpal = "0.15.3"
hound = "3.5.1"
loom = "0.7.2"
midir = "0.10.0"
rand = "0.8.5"
rodio = "0.20.1"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
tempfile = "3.24.0"
wavers = "1.5.1"