2021-05-12 15:05:03 +00:00
|
|
|
[package]
|
|
|
|
name = "gpui_macros"
|
|
|
|
version = "0.1.0"
|
2025-01-17 16:39:22 +00:00
|
|
|
edition.workspace = true
|
|
|
|
publish.workspace = true
|
2024-01-23 15:56:22 +00:00
|
|
|
license = "Apache-2.0"
|
2024-01-23 16:40:30 +00:00
|
|
|
|
2024-03-05 17:01:17 +00:00
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
2021-05-12 15:05:03 +00:00
|
|
|
[lib]
|
2021-11-30 19:46:39 +00:00
|
|
|
path = "src/gpui_macros.rs"
|
2021-05-12 15:05:03 +00:00
|
|
|
proc-macro = true
|
2024-06-13 22:45:28 +00:00
|
|
|
doctest = false
|
2021-05-12 15:05:03 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2025-01-22 16:42:50 +00:00
|
|
|
proc-macro2 = "1.0.66"
|
2024-01-31 02:41:29 +00:00
|
|
|
quote = "1.0.9"
|
2024-07-10 16:32:46 +00:00
|
|
|
syn = { version = "1.0.72", features = ["full", "extra-traits"] }
|