mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 15:44:31 +03:00
0a0a866dd5
Release Notes: - N/A
33 lines
671 B
TOML
33 lines
671 B
TOML
[package]
|
|
name = "rich_text"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
license = "GPL-3.0-or-later"
|
|
|
|
|
|
[lib]
|
|
path = "src/rich_text.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
test-support = [
|
|
"gpui/test-support",
|
|
"util/test-support",
|
|
]
|
|
|
|
[dependencies]
|
|
collections = { path = "../collections" }
|
|
gpui = { path = "../gpui" }
|
|
sum_tree = { path = "../sum_tree" }
|
|
theme = { path = "../theme" }
|
|
language = { path = "../language" }
|
|
util = { path = "../util" }
|
|
ui = { path = "../ui" }
|
|
anyhow.workspace = true
|
|
futures.workspace = true
|
|
lazy_static.workspace = true
|
|
pulldown-cmark = { version = "0.9.2", default-features = false }
|
|
smallvec.workspace = true
|
|
smol.workspace = true
|