mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 07:35:01 +03:00
1c4be24fb7
`cargo run` on Zed project leads to rust-analyzer evantually emitting `[ERROR project_model::workspace] cyclic deps: gpui_macros(Idx::<CrateData>(269)) -> gpui(Idx::<CrateData>(264)), alternative path: gpui(Idx::<CrateData>(264)) -> gpui_macros(Idx::<CrateData>(269))` error after loading the project. The PR fixes this by moving away the test to the "root" project.
16 lines
213 B
TOML
16 lines
213 B
TOML
[package]
|
|
name = "gpui_macros"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/gpui_macros.rs"
|
|
proc-macro = true
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
syn = "1.0"
|
|
quote = "1.0"
|
|
proc-macro2 = "1.0"
|