mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-10 05:37:29 +03:00
30 lines
683 B
TOML
30 lines
683 B
TOML
[package]
|
|
name = "rich_text2"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/rich_text.rs"
|
|
doctest = false
|
|
|
|
[features]
|
|
test-support = [
|
|
"gpui/test-support",
|
|
"util/test-support",
|
|
]
|
|
|
|
[dependencies]
|
|
collections = { path = "../collections" }
|
|
gpui = { package = "gpui2", path = "../gpui2" }
|
|
sum_tree = { path = "../sum_tree" }
|
|
theme = { package = "theme2", path = "../theme2" }
|
|
language = { package = "language2", path = "../language2" }
|
|
util = { path = "../util" }
|
|
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
|