forked from ZhangHanDong/makepad-component
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 742 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (26 loc) · 742 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
[workspace]
members = [
"crates/ui",
"crates/component-zoo",
"crates/a2ui-demo",
"crates/makepad-plot",
]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
publish = false
[workspace.dependencies]
makepad-component = { path = "crates/ui" }
makepad-plot = { path = "crates/makepad-plot" }
makepad-widgets = { git = "https://github.com/makepad/makepad", branch = "dev" }
# Optimize audio decoder even in debug builds (symphonia does heavy float math)
[profile.dev.package.symphonia-core]
opt-level = 2
[profile.dev.package.symphonia-bundle-mp3]
opt-level = 2
[profile.dev.package.symphonia-codec-aac]
opt-level = 2
[profile.dev.package.symphonia-format-isomp4]
opt-level = 2