mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-15 22:28:10 +08:00
* Restructure node-graph folder * Fix wasm compilation * Move node definitions out of *-types crates * Cleanup * Fix warnings * Fix warnings * Start adding migrations * Add migrations and move memo nodes to gcore * Move nodes/gsvg-render -> rendering * Replace some hard coded identifiers and fix automatic conversion * Fix Vec2Value node migration * Fix formatting * Add more migrations * Cleanup features * Fix core_types::raster import * Update demo artwork (to make profile ci work) * Move *-types to node-graph/libraries folder * Add missing node migrations * Migrate more nodes * Remove impure memo node * More fixes and remove warning * Migrate context and add a few missing migrations --------- Co-authored-by: Keavon Chambers <keavon@keavon.com>
35 lines
1019 B
TOML
35 lines
1019 B
TOML
[package]
|
|
name = "graphene-cli"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = "CLI interface for the graphene language"
|
|
authors = ["Graphite Authors <contact@graphite.rs>"]
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[features]
|
|
default = ["wgpu"]
|
|
wgpu = ["wgpu-executor", "gpu", "graphene-std/wgpu"]
|
|
gpu = ["interpreted-executor/gpu", "graphene-std/gpu", "wgpu-executor"]
|
|
|
|
[dependencies]
|
|
# Local dependencies
|
|
graphene-std = { workspace = true }
|
|
interpreted-executor = { workspace = true }
|
|
graph-craft = { workspace = true, features = ["loading"] }
|
|
preprocessor = { workspace = true }
|
|
|
|
# Workspace dependencies
|
|
log = { workspace = true }
|
|
futures = { workspace = true }
|
|
fern = { workspace = true }
|
|
chrono = { workspace = true }
|
|
wgpu = { workspace = true }
|
|
tokio = { workspace = true, features = ["rt-multi-thread"] }
|
|
clap = { workspace = true, features = ["cargo", "derive"] }
|
|
|
|
# Optional local dependencies
|
|
wgpu-executor = { path = "../wgpu-executor", optional = true }
|
|
|
|
[package.metadata.cargo-shear]
|
|
ignored = ["wgpu-executor"]
|