-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (28 loc) · 716 Bytes
/
Cargo.toml
File metadata and controls
30 lines (28 loc) · 716 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 = "gitfetch"
version = "0.1.1"
edition = "2021"
authors = ["FabricSoul"]
description = "A command-line tool to fetch and display Git contribution information"
repository = "https://github.com/FabricSoul/gitfetch"
license = "GPL-3.0"
readme = "README.md"
keywords = ["git", "github", "contributions", "cli", "tui"]
categories = ["command-line-utilities", "development-tools"]
[dependencies]
clap = "4.5.9"
chrono = "0.4.38"
colored = "2.1.0"
octocrab = "0.38.0"
serde_json = "1.0.120"
anyhow = "1.0.86"
thiserror = "1.0.63"
tokio = { version = "1.39.2", features = ["full"] }
toml = "0.8.16"
serde = "1.0.204"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = 'abort'
strip = true