2024-12-12 03:13:52 +00:00
|
|
|
[package]
|
|
|
|
name = "git_ui"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
license = "GPL-3.0-or-later"
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "git_ui"
|
|
|
|
path = "src/git_ui.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-12-12 14:13:40 +00:00
|
|
|
anyhow.workspace = true
|
|
|
|
db.workspace = true
|
2024-12-12 03:13:52 +00:00
|
|
|
gpui.workspace = true
|
2024-12-12 14:13:40 +00:00
|
|
|
project.workspace = true
|
|
|
|
schemars.workspace = true
|
2024-12-12 03:13:52 +00:00
|
|
|
serde.workspace = true
|
2024-12-12 14:13:40 +00:00
|
|
|
serde_derive.workspace = true
|
|
|
|
serde_json.workspace = true
|
|
|
|
settings.workspace = true
|
2024-12-12 03:13:52 +00:00
|
|
|
ui.workspace = true
|
2024-12-12 14:13:40 +00:00
|
|
|
util.workspace = true
|
|
|
|
workspace.workspace = true
|
2024-12-13 03:30:00 +00:00
|
|
|
git.workspace = true
|
|
|
|
collections.workspace = true
|
2024-12-12 03:13:52 +00:00
|
|
|
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
windows.workspace = true
|
|
|
|
|
|
|
|
[features]
|
|
|
|
default = []
|