Graphite/node-graph/graphene-cli/Cargo.toml
Keavon Chambers fb0fab0622
Some checks failed
Editor: Dev & CI / build (push) Waiting to run
Editor: Dev & CI / cargo-deny (push) Waiting to run
Library: Rawkit / build (push) Has been cancelled
Website / build (push) Has been cancelled
Update links from graphite.rs to graphite.art
2025-12-06 18:10:27 -08:00

33 lines
1,009 B
TOML

[package]
name = "graphene-cli"
version = "0.1.0"
edition = "2024"
description = "CLI interface for the graphene language"
authors = ["Graphite Authors <contact@graphite.art>"]
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"] }
image = { workspace = true }
wgpu-executor = { workspace = true, optional = true }
[package.metadata.cargo-shear]
ignored = ["wgpu-executor"]