-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
36 lines (33 loc) · 1.18 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
[workspace]
resolver = "2"
members = [
"form",
"form-macro",
"lyra-ui",
]
[profile.release]
panic = "abort" # Strip expensive panic clean-up logic
codegen-units = 1 # Compile crates one after another so the compiler can optimize better
lto = true # Enables link to optimizations
opt-level = "s" # Optimize for binary size
strip = true
[workspace.dependencies]
anyhow = "1.0.75"
base64 = "0.21.5"
egui = "0.27.2"
eframe = "0.27.2"
egui_extras = { version = "0.27.2", features = ["all_loaders"] }
open = "5.0.1"
parking_lot = "0.12.1"
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
nucleo-matcher = "0.2.0"
toml = "0.8.8"
tracing = "0.1.40"
[patch.crates-io]
eframe = { git = "https://github.com/dfontana/egui.git", branch = "dfontana-next" }
egui = { git = "https://github.com/dfontana/egui.git", branch = "dfontana-next" }
egui_extras = { git = "https://github.com/dfontana/egui.git", branch = "dfontana-next" }
egui_glow = { git = "https://github.com/dfontana/egui.git", branch = "dfontana-next" }
egui-winit = { git = "https://github.com/dfontana/egui.git", branch = "dfontana-next" }
egui-wgpu = { git = "https://github.com/dfontana/egui.git", branch = "dfontana-next" }