18 lines
362 B
TOML
18 lines
362 B
TOML
[package]
|
|
name = "kiln-egui"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[[bin]]
|
|
name = "kiln"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
kiln-core = { path = "../kiln-core" }
|
|
eframe = "0.33.3"
|
|
color = "0.3.3"
|
|
image = { version = "0.25", default-features = false, features = ["png"] }
|
|
rfd = "0.15"
|
|
serde = { version = "1", features = ["derive"] }
|
|
egui_code_editor = "=0.2.20"
|