-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
54 lines (48 loc) · 1.39 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
name = "firewheel"
version = "0.1.0"
description = "Flexible, high-performance, and libre audio engine for games (WIP)"
homepage = "https://github.com/BillyDM/firewheel"
edition.workspace = true
license.workspace = true
authors.workspace = true
keywords.workspace = true
categories.workspace = true
[workspace.package]
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["Billy Messenger <[email protected]>"]
keywords = ["game", "audio"]
categories = ["game-development", "multimedia::audio"]
[workspace]
members = [
"crates/firewheel-core",
"crates/firewheel-cpal",
"crates/firewheel-graph",
"crates/firewheel-sampler",
"crates/firewheel-spatial",
"crates/firewheel-extra",
"examples/beep_test",
"examples/visual_node_graph",
]
[features]
default = ["cpal"]
cpal = ["dep:firewheel-cpal"]
[dependencies]
firewheel-core = { path = "crates/firewheel-core", version = "0.1" }
firewheel-graph = { path = "crates/firewheel-graph", version = "0.1" }
firewheel-cpal = { path = "crates/firewheel-cpal", version = "0.1", optional = true }
[workspace.dependencies]
log = "0.4.22"
rtrb = "0.3.1"
thiserror = "1.0.64"
smallvec = "1.13.2"
arrayvec = "0.7.6"
atomic_float = "1.1.0"
bitflags = "2.6.0"
downcast-rs = "1.2.1"
triple_buffer = "8"
thunderdome = "0.6.1"
# Optimize all dependencies even in debug builds:
[profile.dev.package."*"]
opt-level = 2