mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-08-04 21:37:59 +00:00

* Reorganize cargo dependencies and upgrade most * cargo update * Attempt 2 * Polishing changes * Comment out specta typescript flag-dependent code * Fix test
32 lines
777 B
TOML
32 lines
777 B
TOML
[package]
|
|
name = "vulkan-executor"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[features]
|
|
default = []
|
|
|
|
[dependencies]
|
|
# Local dependencies
|
|
graphene-core = { path = "../gcore", features = ["std", "alloc", "gpu"] }
|
|
graph-craft = { path = "../graph-craft" }
|
|
dyn-any = { path = "../../libraries/dyn-any", features = [
|
|
"log-bad-types",
|
|
"rc",
|
|
"glam",
|
|
] }
|
|
|
|
# Workspace dependencies
|
|
num-traits = { workspace = true }
|
|
log = { workspace = true }
|
|
glam = { workspace = true }
|
|
base64 = { workspace = true }
|
|
bytemuck = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
|
|
# Required dependencies
|
|
vulkano = { git = "https://github.com/GraphiteEditor/vulkano", branch = "fix_rust_gpu" }
|
|
|
|
# Optional workspace dependencies
|
|
serde = { workspace = true, optional = true }
|