Cargo.toml

 1[package]
 2name = "markdown_preview"
 3version = "0.1.0"
 4edition = "2021"
 5publish = false
 6license = "GPL-3.0-or-later"
 7
 8[lib]
 9path = "src/markdown_preview.rs"
10
11[features]
12test-support = []
13
14[dependencies]
15anyhow.workspace = true
16editor = { path = "../editor" }
17gpui = { path = "../gpui" }
18language = { path = "../language" }
19lazy_static.workspace = true
20log.workspace = true
21menu = { path = "../menu" }
22project = { path = "../project" }
23pulldown-cmark.workspace = true
24rich_text = { path = "../rich_text" }
25theme = { path = "../theme" }
26ui = { path = "../ui" }
27util = { path = "../util" }
28workspace = { path = "../workspace" }
29
30[dev-dependencies]
31editor = { path = "../editor", features = ["test-support"] }