mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2026-09-15 22:28:10 +08:00
* Remove unsafe code * Make node graph test syncronous * Add miri step to ci * Remove unsafe from node graph evaluation * Replace operation pseudo_hash with hash based on discriminant * Fix test * Move memo module to core and make it safe * Fix formatting * Remove unused stuff from gstd * Use safe casting for creating key variants * Fix memo node types * Fix ref node * "fix" ub * Use correct input types for ExtractImageFrame * Fix types for async nodes * Fix missing implementation * Manually override output type for async nodes * Fix types for EditorApi * Fix output type for WasmSurfaceHandle * Remove unused miri.yml * Fix incorrect type for cache node
30 lines
834 B
TOML
30 lines
834 B
TOML
[package]
|
|
name = "interpreted-executor"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
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"]
|
|
quantization = ["graphene-std/quantization"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
graphene-core = { path = "../gcore", features = ["async", "std"] }
|
|
graphene-std = { path = "../gstd" }
|
|
graph-craft = { path = "../graph-craft" }
|
|
dyn-any = { path = "../../libraries/dyn-any", features = [
|
|
"log-bad-types",
|
|
"glam",
|
|
] }
|
|
num-traits = "0.2"
|
|
dyn-clone = "1.0"
|
|
log = "0.4"
|
|
serde = { version = "1", features = ["derive"], optional = true }
|
|
glam = { version = "0.22" }
|
|
once_cell = "1.17.0"
|
|
futures = "0.3.28"
|