Lightningbeam/lightningbeam-ui/lightningbeam-editor/Cargo.toml

38 lines
752 B
TOML

[package]
name = "lightningbeam-editor"
version = "0.1.0"
edition = "2021"
[dependencies]
lightningbeam-core = { path = "../lightningbeam-core" }
# UI Framework
eframe = { workspace = true }
egui_extras = { workspace = true }
egui-wgpu = { workspace = true }
# GPU
wgpu = { workspace = true }
vello = { workspace = true }
kurbo = { workspace = true }
peniko = { workspace = true }
# Windowing
winit = { workspace = true }
# Native menus
muda = { workspace = true }
# Serialization
serde = { workspace = true }
serde_json = { workspace = true }
# Image loading
image = { workspace = true }
resvg = { workspace = true }
# Utilities
pollster = { workspace = true }
lightningcss = "1.0.0-alpha.68"
clap = { version = "4.5", features = ["derive"] }