Move shader entrypoints to separate crate (#3157)

This commit is contained in:
Timon
2025-09-10 10:20:45 +00:00
committed by GitHub
parent 50be13522b
commit 9411612d7f
7 changed files with 27 additions and 5 deletions
@@ -0,0 +1,13 @@
[package]
name = "graphene-raster-nodes-shaders-entrypoint"
version = "0.1.0"
edition = "2024"
description = "graphene raster nodes shaders entrypoint"
authors = ["Graphite Authors <contact@graphite.rs>"]
license = "MIT OR Apache-2.0"
[lib]
crate-type = ["rlib", "dylib"]
[dependencies]
graphene-raster-nodes = { path = "../..", default-features = false }
@@ -0,0 +1,2 @@
#![no_std]
pub use graphene_raster_nodes::*;