mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-08-04 13:30:48 +00:00
44 lines
902 B
TOML
44 lines
902 B
TOML
[package]
|
|
name = "interpreted-executor"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[features]
|
|
default = []
|
|
gpu = ["graphene-std/gpu", "graphene-std/wgpu"]
|
|
|
|
[dependencies]
|
|
# Local dependencies
|
|
graphene-std = { workspace = true }
|
|
graph-craft = { workspace = true }
|
|
wgpu-executor = { workspace = true }
|
|
graphene-core = { workspace = true }
|
|
graphene-path-bool = { workspace = true }
|
|
dyn-any = { workspace = true }
|
|
|
|
# Workspace dependencies
|
|
log = { workspace = true }
|
|
glam = { workspace = true }
|
|
futures = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
serde = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
# Workspace dependencies
|
|
graph-craft = { workspace = true, features = ["loading"] }
|
|
criterion = { workspace = true }
|
|
|
|
# Benchmarks
|
|
[[bench]]
|
|
name = "update_executor"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "run_once"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "run_cached"
|
|
harness = false
|
|
|