1[package]
2name = "rich_text"
3version = "0.1.0"
4edition = "2021"
5publish = false
6
7[lib]
8path = "src/rich_text.rs"
9doctest = false
10
11[features]
12test-support = [
13 "gpui/test-support",
14 "util/test-support",
15]
16
17[dependencies]
18collections = { path = "../collections" }
19gpui = { path = "../gpui" }
20sum_tree = { path = "../sum_tree" }
21theme = { path = "../theme" }
22language = { path = "../language" }
23util = { path = "../util" }
24ui = { path = "../ui" }
25anyhow.workspace = true
26futures.workspace = true
27lazy_static.workspace = true
28pulldown-cmark = { version = "0.9.2", default-features = false }
29smallvec.workspace = true
30smol.workspace = true