mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-29 12:38:02 +00:00
8a659af82c
Some checks are pending
CI / Check formatting and spelling (push) Waiting to run
CI / (macOS) Run Clippy and tests (push) Waiting to run
CI / (Linux) Run Clippy and tests (push) Waiting to run
CI / (Windows) Run Clippy and tests (push) Waiting to run
CI / Create a macOS bundle (push) Blocked by required conditions
CI / Create a Linux bundle (push) Blocked by required conditions
CI / Create arm64 Linux bundle (push) Blocked by required conditions
Deploy Docs / Deploy Docs (push) Waiting to run
Must enable extra-traits of syn feature to enable Debug trait of Visibility Release Notes: - N/A --------- Co-authored-by: Marshall Bowers <elliott.codes@gmail.com>
19 lines
321 B
TOML
19 lines
321 B
TOML
[package]
|
|
name = "gpui_macros"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "Apache-2.0"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/gpui_macros.rs"
|
|
proc-macro = true
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1.0.66"
|
|
quote = "1.0.9"
|
|
syn = { version = "1.0.72", features = ["full", "extra-traits"] }
|