-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (32 loc) · 1.01 KB
/
Copy pathCargo.toml
File metadata and controls
36 lines (32 loc) · 1.01 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
[workspace]
resolver = "3"
members = ["apps/*", "crates/*", "examples/*"]
default-members = ["crates/nade"]
[workspace.package]
version = "0.0.1"
edition = "2024"
authors = ["potistudio <potistudio@proton.me>"]
license = "MIT"
publish = false
[profile.release]
codegen-units = 1
lto = true
[workspace.lints.clippy]
all = "warn"
[workspace.dependencies]
anyhow = "1.0.104"
constants = { path = "crates/constants" }
core = { path = "crates/core" }
curve_editor_panel = { path = "crates/curve_editor_panel" }
domain = { path = "crates/domain" }
env_logger = "0.11.11"
effects = { path = "crates/effects" }
encoder = { path = "crates/encoder" }
iced = { version = "0.14.0", features = ["advanced", "canvas", "svg"] }
inspector_panel = { path = "crates/inspector_panel" }
log = "0.4.33"
nade-engine = { path = "crates/engine" }
nade-timeline = { path = "crates/timeline_panel" }
operators = { path = "crates/operators" }
serde = { version = "1.0.229", features = ["derive"] }
uuid = { version = "1.24.0", features = ["v4", "serde"] }