Graphite/node-graph/gpu-executor/Cargo.toml
Dennis Kobert beb1c6ae64
Upgrade to the Rust 2024 edition (#2367)
* Update to rust 2024 edition

* Fixes

* Clean up imports

* Cargo fmt again

---------

Co-authored-by: Keavon Chambers <keavon@keavon.com>
2025-03-12 17:29:12 -07:00

28 lines
715 B
TOML

[package]
name = "gpu-executor"
version = "0.1.0"
edition = "2024"
license = "MIT OR Apache-2.0"
[features]
default = []
[dependencies]
# Local dependencies
node-macro = { path = "../node-macro" }
# Workspace dependencies
graphene-core = { workspace = true, features = ["std", "alloc", "gpu"] }
dyn-any = { workspace = true, features = ["log-bad-types", "rc", "glam"] }
num-traits = { workspace = true }
log = { workspace = true }
serde = { workspace = true }
glam = { workspace = true }
base64 = { workspace = true }
bytemuck = { workspace = true }
anyhow = { workspace = true }
futures = { workspace = true }
web-sys = { workspace = true, features = [
"HtmlCanvasElement",
"ImageBitmapRenderingContext",
] }