22 lines
566 B
TOML
22 lines
566 B
TOML
[package]
|
|
name = "graphite-iced-frontend"
|
|
description = "Pure-Rust GUI for Graphite built on iced"
|
|
publish = false
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[[bin]]
|
|
name = "graphite-iced"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
graphite-editor = { workspace = true }
|
|
|
|
iced = { version = "0.14", default-features = false, features = ["wgpu", "tokio"] }
|
|
rand = { workspace = true, features = ["thread_rng"] }
|
|
tracing = { workspace = true }
|
|
tracing-subscriber = { workspace = true }
|