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