markdown_preview: Sort dependencies in `Cargo.toml` (#7226)

Marshall Bowers created

This PR sorts the dependencies for the `markdown_preview` crate in
alphabetical order.

Release Notes:

- N/A

Change summary

crates/markdown_preview/Cargo.toml | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)

Detailed changes

crates/markdown_preview/Cargo.toml 🔗

@@ -12,21 +12,20 @@ path = "src/markdown_preview.rs"
 test-support = []
 
 [dependencies]
+anyhow.workspace = true
 editor = { path = "../editor" }
 gpui = { path = "../gpui" }
 language = { path = "../language" }
+lazy_static.workspace = true
+log.workspace = true
 menu = { path = "../menu" }
 project = { path = "../project" }
+pulldown-cmark.workspace = true
+rich_text = { path = "../rich_text" }
 theme = { path = "../theme" }
 ui = { path = "../ui" }
 util = { path = "../util" }
 workspace = { path = "../workspace" }
-rich_text = { path = "../rich_text" }
-
-anyhow.workspace = true
-lazy_static.workspace = true
-log.workspace = true
-pulldown-cmark.workspace = true
 
 [dev-dependencies]
 editor = { path = "../editor", features = ["test-support"] }