2023-10-05 03:47:30 +03:00
|
|
|
[package]
|
2023-10-06 00:19:13 +03:00
|
|
|
name = "rich_text"
|
2023-10-05 03:47:30 +03:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[lib]
|
2023-10-06 00:19:13 +03:00
|
|
|
path = "src/rich_text.rs"
|
2023-10-05 03:47:30 +03:00
|
|
|
doctest = false
|
|
|
|
|
|
|
|
[features]
|
|
|
|
test-support = [
|
|
|
|
"gpui/test-support",
|
|
|
|
"util/test-support",
|
|
|
|
]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
collections = { path = "../collections" }
|
2024-01-03 23:59:39 +03:00
|
|
|
gpui = { path = "../gpui" }
|
2023-10-05 03:47:30 +03:00
|
|
|
sum_tree = { path = "../sum_tree" }
|
2024-01-03 23:41:01 +03:00
|
|
|
theme = { path = "../theme" }
|
2024-01-03 22:58:02 +03:00
|
|
|
language = { path = "../language" }
|
2023-10-05 03:47:30 +03:00
|
|
|
util = { path = "../util" }
|
2024-01-20 02:59:17 +03:00
|
|
|
ui = { path = "../ui" }
|
2023-10-05 03:47:30 +03:00
|
|
|
anyhow.workspace = true
|
|
|
|
futures.workspace = true
|
|
|
|
lazy_static.workspace = true
|
|
|
|
pulldown-cmark = { version = "0.9.2", default-features = false }
|
|
|
|
smallvec.workspace = true
|
|
|
|
smol.workspace = true
|