mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-08-03 21:08:18 +00:00

* Update to rust 2024 edition * Fixes * Clean up imports * Cargo fmt again --------- Co-authored-by: Keavon Chambers <keavon@keavon.com>
53 lines
1.3 KiB
TOML
53 lines
1.3 KiB
TOML
[package]
|
|
name = "interpreted-executor"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[features]
|
|
default = []
|
|
serde = ["dep:serde", "graphene-std/serde", "glam/serde"]
|
|
gpu = ["graphene-std/gpu", "graphene-core/gpu", "graphene-std/wgpu"]
|
|
|
|
[dependencies]
|
|
# Local dependencies
|
|
graphene-std = { path = "../gstd", features = ["serde"] }
|
|
graph-craft = { path = "../graph-craft" }
|
|
gpu-executor = { path = "../gpu-executor" }
|
|
wgpu-executor = { path = "../wgpu-executor" }
|
|
|
|
# Workspace dependencies
|
|
graphene-core = { workspace = true, features = ["std"] }
|
|
dyn-any = { workspace = true, features = ["log-bad-types", "glam"] }
|
|
num-traits = { workspace = true }
|
|
log = { workspace = true }
|
|
wgpu = { workspace = true }
|
|
glam = { workspace = true }
|
|
futures = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
|
|
# Optional workspace dependencies
|
|
serde = { workspace = true, optional = true }
|
|
|
|
[dev-dependencies]
|
|
# Workspace dependencies
|
|
graph-craft = { workspace = true, features = ["loading"] }
|
|
|
|
# Required dependencies
|
|
criterion = { version = "0.5", features = ["html_reports"]}
|
|
glob = "0.3"
|
|
iai-callgrind = { version = "0.12.3"}
|
|
|
|
# Benchmarks
|
|
[[bench]]
|
|
name = "update_executor"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "run_once"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "run_cached"
|
|
harness = false
|
|
|