mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-08 15:44:31 +03:00
e4b1c76895
Let this screenshot of settings.json speak for itself: ![image](https://github.com/zed-industries/zed/assets/24362066/fca60383-1788-43f9-803b-00f083394c8a) Release Notes: - Added code completion & on-hover documentation to Zed's settings.json file. --------- Co-authored-by: Marshall Bowers <elliott.codes@gmail.com>
31 lines
678 B
TOML
31 lines
678 B
TOML
[package]
|
|
name = "auto_update"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "src/auto_update.rs"
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
db = { path = "../db" }
|
|
client = { path = "../client" }
|
|
gpui = { path = "../gpui" }
|
|
menu = { path = "../menu" }
|
|
project = { path = "../project" }
|
|
settings = { path = "../settings" }
|
|
theme = { path = "../theme" }
|
|
workspace = { path = "../workspace" }
|
|
util = { path = "../util" }
|
|
anyhow.workspace = true
|
|
isahc.workspace = true
|
|
lazy_static.workspace = true
|
|
log.workspace = true
|
|
schemars.workspace = true
|
|
serde.workspace = true
|
|
serde_derive.workspace = true
|
|
serde_json.workspace = true
|
|
smol.workspace = true
|
|
tempdir.workspace = true
|