mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-25 19:29:49 +00:00
47a1ff7df9
This PR sorts the dependencies for the `markdown_preview` crate in alphabetical order. Release Notes: - N/A
31 lines
705 B
TOML
31 lines
705 B
TOML
[package]
|
|
name = "markdown_preview"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lib]
|
|
path = "src/markdown_preview.rs"
|
|
|
|
[features]
|
|
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" }
|
|
|
|
[dev-dependencies]
|
|
editor = { path = "../editor", features = ["test-support"] }
|