wip: scaffold proc crate and view macro

This commit is contained in:
🪞👃🪞 2025-05-03 17:04:21 +03:00
parent 21f7f6b38a
commit 2c797fd41f
9 changed files with 135 additions and 5 deletions

13
proc/Cargo.toml Normal file
View file

@ -0,0 +1,13 @@
[package]
name = "tengri_proc"
description = "UI metaframework, procedural macros."
version = { workspace = true }
edition = { workspace = true }
[lib]
proc-macro = true
[dependencies]
syn = { version = "2", features = ["full"] }
quote = { version = "1" }
proc-macro2 = { version = "1", features = ["span-locations"] }