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

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

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-02-01 11:26:50 -05:00 committed by GitHub
parent b9d5eb17a3
commit 47a1ff7df9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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"] }