Cargo.toml

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