-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 904 Bytes
/
Cargo.toml
File metadata and controls
29 lines (26 loc) · 904 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
[package]
name = "githubfetch"
version = "0.1.0"
edition = "2024"
description = "A Neofetch-like CLI tool that beautifully displays GitHub profile information in your Kitty Terminal"
[dependencies]
anyhow = "1.0.102"
colored = "3.1.1"
reqwest = { version = "0.13.2", features = ["json"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
tokio = { version = "1.49.0", features = ["full"] }
[package.metadata.deb]
maintainer = "Juan Díaz <juandiazfdez1992@gmail.com>"
copyright = "2026, Juan Díaz"
license-file = ["LICENSE"]
assets = [
["target/release/githubfetch", "usr/bin/", "755"],
]
[package.metadata.generate-rpm]
summary = "A Neofetch-like CLI tool that beautifully displays GitHub profile information in your Kitty Terminal"
license = "MIT"
release = "1"
assets = [
{ source = "target/release/githubfetch", dest = "/usr/bin/githubfetch", mode = "755" }
]