-
Notifications
You must be signed in to change notification settings - Fork 101
Expand file tree
/
Copy pathCargo.toml
More file actions
87 lines (81 loc) · 1.9 KB
/
Cargo.toml
File metadata and controls
87 lines (81 loc) · 1.9 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[package]
name = "gitlogue"
version = "0.9.0"
edition = "2021"
authors = ["unhappychoice"]
description = "A Git history screensaver - watch your code rewrite itself"
license = "ISC"
repository = "https://github.com/unhappychoice/gitlogue"
exclude = [
"*.png",
"*.gif",
"*.jpg",
"*.jpeg",
"*.mp4",
"docs/",
"examples/",
".github/",
"Formula/",
"about.toml",
"about.hbs",
"generate_changelog.sh",
"install.sh",
]
[dependencies]
anyhow = "1.0"
chrono = "0.4"
chrono-english = "0.1"
clap = { version = "4.6", features = ["derive"] }
crossterm = "0.29"
ctrlc = { version = "3.5", features = ["termination"] }
dirs = "6.0"
git2 = { version = "0.20", features = ["vendored-openssl", "vendored-libgit2"] }
globset = "0.4"
rand = "0.10"
ratatui = "0.30"
serde = { version = "1.0", features = ["derive"] }
streaming-iterator = "0.1"
toml = "1.1"
toml_edit = "0.25"
tree-sitter = "0.25"
tree-sitter-astro-next = "0.1"
tree-sitter-bash = "0.25"
tree-sitter-c = "0.24"
tree-sitter-c-sharp = "0.23"
tree-sitter-clojure = "0.1"
tree-sitter-cpp = "0.23"
tree-sitter-css = "0.25"
tree-sitter-dart = "0.1.0"
tree-sitter-elixir = "0.3"
tree-sitter-erlang = "0.15"
tree-sitter-go = "0.25"
tree-sitter-haskell = "0.23"
tree-sitter-html = "0.23"
tree-sitter-java = "0.23"
tree-sitter-javascript = "0.25"
tree-sitter-json = "0.24"
tree-sitter-kotlin-ng = "1.0"
tree-sitter-lua = "0.5"
tree-sitter-md = "0.5"
tree-sitter-nix = "0.3"
tree-sitter-php = "0.24"
tree-sitter-python = "0.25"
tree-sitter-ruby = "0.23"
tree-sitter-rust = "0.24"
tree-sitter-scala = "0.26"
tree-sitter-svelte-ng = "1.0"
tree-sitter-swift = "0.7"
tree-sitter-typescript = "0.23"
tree-sitter-xml = "0.7"
tree-sitter-yaml = "0.7"
tree-sitter-zig = "1.0"
unicode-width = "0.2"
[lib]
name = "gitlogue"
path = "src/lib.rs"
[[bin]]
name = "gitlogue"
path = "src/main.rs"
[[example]]
name = "test_highlighter"
path = "examples/test_highlighter.rs"