[package] name = "graphene-core" version = "0.1.0" edition = "2021" description = "API definitions for Graphene" authors = ["Graphite Authors "] license = "MIT OR Apache-2.0" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] std = ["dyn-any"] default = ["async"] gpu = ["spirv-std"] async = ["async-trait"] nightly = [] [dependencies] dyn-any = {path = "../../libraries/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} serde = {version = "1.0", features = ["derive"]}