mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-05 23:51:08 +00:00
30 lines
826 B
TOML
30 lines
826 B
TOML
|
[package]
|
||
|
name = "auto_update2"
|
||
|
version = "0.1.0"
|
||
|
edition = "2021"
|
||
|
publish = false
|
||
|
|
||
|
[lib]
|
||
|
path = "src/auto_update.rs"
|
||
|
doctest = false
|
||
|
|
||
|
[dependencies]
|
||
|
db = { package = "db2", path = "../db2" }
|
||
|
client = { package = "client2", path = "../client2" }
|
||
|
gpui = { package = "gpui2", path = "../gpui2" }
|
||
|
menu = { package = "menu2", path = "../menu2" }
|
||
|
project = { package = "project2", path = "../project2" }
|
||
|
settings = { package = "settings2", path = "../settings2" }
|
||
|
theme = { package = "theme2", path = "../theme2" }
|
||
|
workspace = { package = "workspace2", path = "../workspace2" }
|
||
|
util = { path = "../util" }
|
||
|
anyhow.workspace = true
|
||
|
isahc.workspace = true
|
||
|
lazy_static.workspace = true
|
||
|
log.workspace = true
|
||
|
serde.workspace = true
|
||
|
serde_derive.workspace = true
|
||
|
serde_json.workspace = true
|
||
|
smol.workspace = true
|
||
|
tempdir.workspace = true
|