mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-12-23 10:11:54 +00:00
21 lines
617 B
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}
|