* update deps * clean up * add account crate * add person crate * add chat and chat ui crates * . * clean up the ui crate * . * .
27 lines
610 B
TOML
27 lines
610 B
TOML
[package]
|
|
name = "ui"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
|
|
[dependencies]
|
|
common = { path = "../common" }
|
|
theme = { path = "../theme" }
|
|
|
|
gpui.workspace = true
|
|
smol.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
smallvec.workspace = true
|
|
anyhow.workspace = true
|
|
itertools.workspace = true
|
|
log.workspace = true
|
|
|
|
unicode-segmentation = "1.12.0"
|
|
uuid = "1.10"
|
|
regex = "1"
|
|
image = "0.25.1"
|
|
lsp-types = "0.97.0"
|
|
rope = { git = "https://github.com/zed-industries/zed" }
|
|
sum_tree = { git = "https://github.com/zed-industries/zed" }
|