mirror of
https://github.com/zed-industries/zed.git
synced 2026-05-24 05:25:18 +00:00
<img width="541" height="245" alt="SCR-20260515-phfs" src="https://github.com/user-attachments/assets/30413912-5c83-49c1-8874-4f987af222d3" /> Might be nice to in the future, have this open a modal to allow inputting, similar to configuring MCP servers, but this is nice quick fix for now. Self-Review Checklist: - [X] I've reviewed my own diff for quality, security, and reliability - [X] Unsafe blocks (if any) have justifying comments - [X] The content is consistent with the [UI/UX checklist](https://github.com/zed-industries/zed/blob/main/CONTRIBUTING.md#uiux-checklist) - [ ] Tests cover the new/changed behavior - [X] Performance impact has been considered and is acceptable Release Notes: - N/A
60 lines
1.5 KiB
TOML
60 lines
1.5 KiB
TOML
[package]
|
|
name = "git_graph"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
path = "src/git_graph.rs"
|
|
|
|
[features]
|
|
default = []
|
|
test-support = [
|
|
"dep:rand",
|
|
"project/test-support",
|
|
"gpui/test-support",
|
|
"remote_connection/test-support",
|
|
]
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
async-channel.workspace = true
|
|
collections.workspace = true
|
|
db.workspace = true
|
|
editor.workspace = true
|
|
git.workspace = true
|
|
git_ui.workspace = true
|
|
gpui.workspace = true
|
|
language.workspace = true
|
|
menu.workspace = true
|
|
picker.workspace = true
|
|
project.workspace = true
|
|
project_panel.workspace = true
|
|
rand = { workspace = true, optional = true }
|
|
release_channel.workspace = true
|
|
search.workspace = true
|
|
settings.workspace = true
|
|
smallvec.workspace = true
|
|
task.workspace = true
|
|
theme.workspace = true
|
|
theme_settings.workspace = true
|
|
time.workspace = true
|
|
ui.workspace = true
|
|
workspace.workspace = true
|
|
|
|
[dev-dependencies]
|
|
db = { workspace = true, features = ["test-support"] }
|
|
fs = { workspace = true, features = ["test-support"] }
|
|
git = { workspace = true, features = ["test-support"] }
|
|
gpui = { workspace = true, features = ["test-support"] }
|
|
language_model.workspace = true
|
|
project = { workspace = true, features = ["test-support"] }
|
|
rand.workspace = true
|
|
remote_connection = { workspace = true, features = ["test-support"] }
|
|
serde_json.workspace = true
|
|
settings = { workspace = true, features = ["test-support"] }
|
|
workspace = { workspace = true, features = ["test-support"] }
|