Graphite/node-graph/gcore/Cargo.toml

21 lines
617 B
TOML

[package]
name = "graphene-core"
version = "0.1.0"
edition = "2021"
description = "Api definitions for graphene"
authors = ["Dennis Kobert <dennis@kobert.dev>"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
std = ["dyn-any"]
default = ["gpu", "async"]
gpu = ["spirv-std"]
async = ["async-trait"]
nightly = []
[dependencies]
dyn-any = {path = "../dyn-any", features = ["derive"], optional = true}
spirv-std = { git = "https://github.com/EmbarkStudios/rust-gpu", features = ["glam"] , optional = true}
async-trait = {version = "0.1", optional = true}