Max Richter
bcec0b45ab
Some checks failed
Deploy to GitHub Pages / build_site (push) Failing after 43s
19 lines
530 B
TOML
19 lines
530 B
TOML
[package]
|
|
name = "nodarium_macros"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
description = "Procedural macros for the nodarium crate"
|
|
homepage = "https://nodes.max-richter.dev/docs"
|
|
repository = "https://github.com/jim-fx/nodes"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
syn = { version = "1.0", features = ["full"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
|
|
quote = "1.0"
|
|
nodarium_types = { version = "0.1.0", path = "../types" }
|