zed/crates/gpui_macros/Cargo.toml
Marshall Bowers e338f34097
Sort dependencies in Cargo.toml files (#7126)
This PR sorts the dependency lists in our `Cargo.toml` files so that
they are in alphabetical order.

This should make them easier to visually scan when looking for a
dependency.

Apologies in advance for any merge conflicts 🙈 

Release Notes:

- N/A
2024-01-30 21:41:29 -05:00

16 lines
263 B
TOML

[package]
name = "gpui_macros"
version = "0.1.0"
edition = "2021"
publish = false
license = "Apache-2.0"
[lib]
path = "src/gpui_macros.rs"
proc-macro = true
[dependencies]
proc-macro2 = "1.0.66"
quote = "1.0.9"
syn = { version = "1.0.72", features = ["full"] }