mirror of
https://github.com/zed-industries/zed.git
synced 2024-12-27 10:59:53 +00:00
743f9b345f
We should prefer referring to local deps via `.workspace = true` from now on. Release Notes: - N/A
31 lines
581 B
TOML
31 lines
581 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]
|
|
anyhow.workspace = true
|
|
collections.workspace = true
|
|
futures.workspace = true
|
|
gpui.workspace = true
|
|
language.workspace = true
|
|
lazy_static.workspace = true
|
|
pulldown-cmark.workspace = true
|
|
smallvec.workspace = true
|
|
smol.workspace = true
|
|
sum_tree.workspace = true
|
|
theme.workspace = true
|
|
ui.workspace = true
|
|
util.workspace = true
|