Cargo.toml

 1[package]
 2name = "git_ui"
 3version = "0.1.0"
 4edition.workspace = true
 5publish.workspace = true
 6license = "GPL-3.0-or-later"
 7
 8[lints]
 9workspace = true
10
11[lib]
12name = "git_ui"
13path = "src/git_ui.rs"
14
15[dependencies]
16anyhow.workspace = true
17collections.workspace = true
18db.workspace = true
19editor.workspace = true
20feature_flags.workspace = true
21futures.workspace = true
22git.workspace = true
23gpui.workspace = true
24language.workspace = true
25multi_buffer.workspace = true
26menu.workspace = true
27postage.workspace = true
28project.workspace = true
29rpc.workspace = true
30schemars.workspace = true
31serde.workspace = true
32serde_derive.workspace = true
33serde_json.workspace = true
34settings.workspace = true
35theme.workspace = true
36ui.workspace = true
37util.workspace = true
38workspace.workspace = true
39picker.workspace = true
40
41[target.'cfg(windows)'.dependencies]
42windows.workspace = true
43
44[features]
45default = []