[package] name = "graphene-cli" version = "0.1.0" edition = "2021" description = "CLI interface for the graphene language" authors = ["Graphite Authors "] license = "MIT OR Apache-2.0" # 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"] passthrough = ["wgpu-executor/passthrough"] quantization = ["graphene-std/quantization"] [dependencies] log = "0.4" bitflags = "2.4" serde = { version = "1.0", features = ["derive"] } serde_json = { version = "1.0" } bezier-rs = { path = "../../libraries/bezier-rs" } glam = { version = "0.24", 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 = { workspace = true, 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.17" [dependencies.document-legacy] path = "../../document-legacy" package = "graphite-document-legacy" [dev-dependencies] env_logger = "0.10" test-case = "3.1"