mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-12-23 10:11:54 +00:00
34 lines
886 B
TOML
34 lines
886 B
TOML
[package]
|
|
name = "graphite-desktop-wrapper"
|
|
version = "0.1.0"
|
|
description = "Graphite Desktop Wrapper"
|
|
authors = ["Graphite Authors <contact@graphite.art>"]
|
|
license = "Apache-2.0"
|
|
repository = ""
|
|
edition = "2024"
|
|
rust-version = "1.87"
|
|
|
|
[features]
|
|
gpu = ["graphite-editor/gpu", "graphene-std/shader-nodes"]
|
|
|
|
[dependencies]
|
|
# Local dependencies
|
|
graphite-editor = { path = "../../editor", features = [
|
|
"gpu",
|
|
] }
|
|
graphene-std = { workspace = true }
|
|
graph-craft = { workspace = true }
|
|
wgpu-executor = { workspace = true }
|
|
|
|
wgpu = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
futures = { workspace = true }
|
|
tracing = { workspace = true }
|
|
dirs = { workspace = true }
|
|
ron = { workspace = true}
|
|
vello = { workspace = true }
|
|
image = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
keyboard-types = { workspace = true }
|
|
base64 = { workspace = true }
|