1[package]
2name = "rich_text2"
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 = { package = "gpui2", path = "../gpui2" }
20sum_tree = { path = "../sum_tree" }
21theme = { package = "theme2", path = "../theme2" }
22language = { package = "language2", path = "../language2" }
23util = { path = "../util" }
24anyhow.workspace = true
25futures.workspace = true
26lazy_static.workspace = true
27pulldown-cmark = { version = "0.9.2", default-features = false }
28smallvec.workspace = true
29smol.workspace = true