mirror of
https://codeberg.org/unspeaker/tengri.git
synced 2025-12-06 03:36:42 +01:00
18 lines
459 B
TOML
18 lines
459 B
TOML
[package]
|
|
name = "tengri_proc"
|
|
description = "UI metaframework, procedural macros."
|
|
version = { workspace = true }
|
|
edition = { workspace = true }
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
tengri_core = { path = "../core" }
|
|
syn = { workspace = true }
|
|
quote = { workspace = true }
|
|
proc-macro2 = { workspace = true }
|
|
heck = { workspace = true }
|
|
|
|
[target.'cfg(target_os = "linux")']
|
|
rustflags = ["-C", "link-arg=-fuse-ld=mold"]
|