mirror of
https://codeberg.org/unspeaker/tengri.git
synced 2026-03-13 20:20:43 +01:00
18 lines
496 B
TOML
18 lines
496 B
TOML
[package]
|
|
name = "tengri_proc"
|
|
description = "UI metaframework, procedural macros."
|
|
version = "0.15.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
dizzle = { path = "../../dizzle" }
|
|
quote = { version = "1" }
|
|
syn = { version = "2", features = ["full", "extra-traits"] }
|
|
heck = { version = "0.5" }
|
|
proc-macro2 = { version = "1", features = ["span-locations"] }
|
|
|
|
[target.'cfg(target_os = "linux")']
|
|
rustflags = ["-C", "link-arg=-fuse-ld=mold"]
|