mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-08-03 21:08:18 +00:00
57 lines
1.5 KiB
TOML
57 lines
1.5 KiB
TOML
[package]
|
|
name = "graphene-cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
gpu = [
|
|
"interpreted-executor/gpu",
|
|
"graphene-std/gpu",
|
|
"graphene-core/gpu",
|
|
"wgpu-executor",
|
|
"gpu-executor",
|
|
]
|
|
default = ["wgpu"]
|
|
wgpu = ["wgpu-executor", "gpu", "graphene-std/wgpu"]
|
|
wayland = ["graphene-std/wayland"]
|
|
profiling = ["wgpu-executor/profiling"]
|
|
|
|
|
|
[dependencies]
|
|
log = "0.4"
|
|
bitflags = "1.2.1"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = { version = "1.0" }
|
|
bezier-rs = { path = "../../libraries/bezier-rs" }
|
|
glam = { version = "0.22", features = ["serde"] }
|
|
|
|
# Node graph
|
|
graphene-std = { path = "../gstd" }
|
|
image = { version = "0.24", default-features = false, features = [
|
|
"bmp",
|
|
"png",
|
|
] }
|
|
graph-craft = { path = "../graph-craft" }
|
|
wgpu-executor = { path = "../wgpu-executor", optional = true }
|
|
gpu-executor = { path = "../gpu-executor", optional = true }
|
|
interpreted-executor = { path = "../interpreted-executor" }
|
|
dyn-any = { path = "../../libraries/dyn-any" }
|
|
graphene-core = { path = "../gcore" }
|
|
future-executor = { path = "../future-executor", optional = true }
|
|
|
|
wasm-bindgen = { version = "0.2.86", optional = true }
|
|
futures = "0.3.28"
|
|
fern = { version = "0.6.2", features = ["colored"] }
|
|
chrono = "0.4.26"
|
|
tokio = { version = "1.28.2", features = ["macros", "rt"] }
|
|
wgpu = "0.16.1"
|
|
|
|
[dependencies.document-legacy]
|
|
path = "../../document-legacy"
|
|
package = "graphite-document-legacy"
|
|
|
|
[dev-dependencies]
|
|
env_logger = "0.8.4"
|
|
test-case = "2.1"
|