32 lines
823 B
TOML
32 lines
823 B
TOML
[package]
|
|
name = "cord-gui"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "Interactive GUI editor for Cord geometry"
|
|
license = "MIT"
|
|
repository = "https://github.com/pszsh/cord"
|
|
publish = false
|
|
|
|
[[bin]]
|
|
name = "cord-gui"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
cord-trig = { path = "../cord-trig" }
|
|
cord-cordic = { path = "../cord-cordic" }
|
|
cord-shader = { path = "../cord-shader" }
|
|
cord-parse = { path = "../cord-parse" }
|
|
cord-sdf = { path = "../cord-sdf" }
|
|
cord-format = { path = "../cord-format" }
|
|
cord-decompile = { path = "../cord-decompile" }
|
|
cord-expr = { path = "../cord-expr" }
|
|
iced = { version = "0.14", features = ["wgpu", "advanced", "markdown", "tokio", "canvas"] }
|
|
rfd = "0.15"
|
|
bytemuck = { version = "1", features = ["derive"] }
|
|
anyhow = "1"
|
|
serde_json = "1"
|
|
dirs = "6"
|
|
arboard = "3"
|
|
zip = "2"
|
|
muda = "0.17"
|