Cargo.toml

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