2024-04-15 22:13:43 +02:00
|
|
|
[package]
|
2024-05-02 14:02:23 +02:00
|
|
|
name = "nodarium_macros"
|
2024-04-15 22:13:43 +02:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2024-05-02 14:02:23 +02:00
|
|
|
license = "MIT"
|
|
|
|
description = "Procedural macros for the nodarium crate"
|
|
|
|
homepage = "https://nodes.max-richter.dev/docs"
|
|
|
|
repository = "https://github.com/jim-fx/nodes"
|
2024-04-15 22:13:43 +02:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
proc-macro = true
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
syn = { version = "1.0", features = ["full"] }
|
2024-04-18 15:40:41 +02:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
|
2024-04-15 22:13:43 +02:00
|
|
|
quote = "1.0"
|
2024-05-02 14:15:20 +02:00
|
|
|
nodarium_types = { version = "0.1.0", path = "../types" }
|