-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (31 loc) · 910 Bytes
/
Copy pathCargo.toml
File metadata and controls
38 lines (31 loc) · 910 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
[package]
name = "doze"
version.workspace = true
edition = "2024"
description = "Modular and composable audio plugin abstraction layer for Rust"
keywords = [ "doze", "audio", "plugin" ]
authors.workspace = true
repository.workspace = true
license.workspace = true
readme = "README.md"
[workspace]
members = [
"crates/doze_common",
"crates/doze_plugin",
"backends/doze_clap",
# examples
"examples/gain"
]
[workspace.package]
authors = [ "Connor Davis <connor@scequ.com>" ]
repository = "https://github.com/ConcurAc/doze"
license = "Apache-2.0"
version = "0.1.0"
[workspace.dependencies]
doze = { path = ".", version = "*" }
doze_common = { path = "crates/doze_common", version = "0.1" }
doze_plugin = { path = "crates/doze_plugin", version = "0.1" }
doze_clap = { path = "backends/doze_clap", version = "0.1" }
[dependencies]
doze_plugin.workspace = true
doze_common.workspace = true