2024-02-01 09:03:09 +00:00
|
|
|
[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]
|
2024-02-01 16:26:50 +00:00
|
|
|
anyhow.workspace = true
|
2024-02-01 09:03:09 +00:00
|
|
|
editor = { path = "../editor" }
|
|
|
|
gpui = { path = "../gpui" }
|
|
|
|
language = { path = "../language" }
|
2024-02-01 16:26:50 +00:00
|
|
|
lazy_static.workspace = true
|
|
|
|
log.workspace = true
|
2024-02-01 09:03:09 +00:00
|
|
|
menu = { path = "../menu" }
|
|
|
|
project = { path = "../project" }
|
2024-02-01 16:26:50 +00:00
|
|
|
pulldown-cmark.workspace = true
|
|
|
|
rich_text = { path = "../rich_text" }
|
2024-02-01 09:03:09 +00:00
|
|
|
theme = { path = "../theme" }
|
|
|
|
ui = { path = "../ui" }
|
|
|
|
util = { path = "../util" }
|
|
|
|
workspace = { path = "../workspace" }
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
editor = { path = "../editor", features = ["test-support"] }
|