Cargo.toml

 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
18[dependencies]
19collections = { path = "../collections" }
20gpui = { path = "../gpui" }
21sum_tree = { path = "../sum_tree" }
22theme = { path = "../theme" }
23language = { path = "../language" }
24util = { path = "../util" }
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