-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (44 loc) · 1.1 KB
/
Cargo.toml
File metadata and controls
55 lines (44 loc) · 1.1 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[workspace]
resolver = "2"
members = ["crates/*"]
[workspace.package]
version = "0.1.0"
edition = "2024"
license = "MIT"
[workspace.dependencies]
# Core
bevy = { version = "0.18", default-features = false }
wgpu = "27"
glam = "0.30"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
tracing = "0.1"
base64 = "0.22"
bytemuck = { version = "1.21", features = ["derive"] }
parking_lot = "0.12"
# Image handling
image = "0.25"
palette = "0.7"
# OpenFX
openfx-sys = "0.1"
# File dialog
rfd = "0.15"
# Webview / CEF
wry = "0.53"
cef = "143.7"
urlencoding = "2.1"
# Networking
tokio = { version = "1.44", features = ["sync", "rt-multi-thread", "macros"] }
tokio-tungstenite = "0.26"
futures-util = "0.3"
[workspace.lints.rust]
unsafe_code = "warn"
# ── Build profiles ──────────────────────────────────────────────
# Optimize dependencies in dev builds so wgpu/bytemuck/glam don't crawl.
[profile.dev.package."*"]
opt-level = 2
[profile.release]
lto = true
codegen-units = 1
strip = true