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]
19collections = { path = "../collections" }
20gpui = { path = "../gpui" }
21sum_tree = { path = "../sum_tree" }
22theme = { path = "../theme" }
23language = { path = "../language" }
24util = { path = "../util" }
25ui = { path = "../ui" }
26anyhow.workspace = true
27futures.workspace = true
28lazy_static.workspace = true
29pulldown-cmark = { version = "0.9.2", default-features = false }
30smallvec.workspace = true
31smol.workspace = true