-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (27 loc) · 869 Bytes
/
Cargo.toml
File metadata and controls
30 lines (27 loc) · 869 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "stage"
description="GUI Git client inspired by Magit"
version = "0.1.24"
edition = "2021"
license = "GPL-3.0-or-later"
authors = ["Aleksey Ganzha <aganzha@yandex.ru>"]
[dependencies]
gtk4 = { version = "0.10.2", features = ["gnome_49", "v4_20"] }
libadwaita = { version = "0.8.0", features = ["v1_8"] }
git2 = "0.20.2"
regex = "1.12.2"
log = "0.4.28"
env_logger = "0.11.8"
async-channel = "2.5.0"
chrono = "0.4.42"
html-escape = "0.2.13"
similar = "2.7.0"
anyhow = "1.0.100"
tree-sitter = {version="0.25.10", optional=true}
tree-sitter-python = {version="0.25.0", optional=true}
tree-sitter-rust = {version="0.24.0", optional=true}
tree-sitter-typescript = {version="0.23.2", optional=true}
palette = "0.7.6"
[features]
default=["syntax"]
syntax = ["dep:tree-sitter", "dep:tree-sitter-rust", "dep:tree-sitter-python", "dep:tree-sitter-typescript"]