18 lines
490 B
TOML
18 lines
490 B
TOML
[package]
|
|
name = "{{name}}-node"
|
|
version = "0.1.0"
|
|
authors = [{%for author in authors%}"{{author}}", {%endfor%}]
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
publish = false
|
|
|
|
[lib]
|
|
crate-type = ["dylib", "lib"]
|
|
|
|
[patch.crates-io]
|
|
libm = { git = "https://github.com/rust-lang/libm", tag = "0.2.5" }
|
|
|
|
[dependencies]
|
|
spirv-std = { git = "https://github.com/EmbarkStudios/rust-gpu" , features= ["glam"]}
|
|
graphene-core = {path = "{{gcore_path}}", default-features = false, features = ["gpu"]}
|