-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (36 loc) · 936 Bytes
/
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
[workspace]
members = [
"crates/neo-audio",
"crates/realtime-tools",
"examples/egui-example",
"examples/feedback",
"examples/iced-example",
"examples/player",
"examples/tauri-example/src-tauri",
]
resolver = "2"
[workspace.package]
edition = "2021"
rust-version = "1.72"
version = "0.2.0"
license = "MIT OR Apache-2.0"
repository = "https://github.com/neodsp/neo-audio"
keywords = ["audio"]
categories = ["multimedia::audio"]
authors = ["Stephan Eckes <[email protected]>"]
homepage = "https://neodsp.com"
readme = "README.md"
[profile.dev.package."*"]
opt-level = 2 # Optimize all dependencies in debug build
[workspace.dependencies]
neo-audio = { path = "crates/neo-audio" }
realtime-tools = { path = "crates/realtime-tools" }
cpal = "0.15.3"
crossbeam-channel = "0.5.12"
easer = "0.3.0"
ndarray = "0.15.6"
ringbuf = "0.4.1"
rtaudio = "0.3.3"
serde = "1.0.197"
thiserror = "1.0.58"
weresocool_portaudio = "1.0.47"