Skip to content

Commit bee8938

Browse files
committed
initial commit
0 parents  commit bee8938

6 files changed

Lines changed: 534 additions & 0 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/target

Cargo.lock

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
[package]
2+
name = "github-stats"
3+
version = "0.1.0"
4+
edition = "2021"
5+
authors = ["cqb13 <cqb13.dev@gmail.com>"]
6+
license = "MIT"
7+
description = "A CLI tool for getting information on github repositories."
8+
readme = "./README.md"
9+
homepage = "https://github.com/cqb13/github-stats"
10+
repository = "https://github.com/cqb13/github-stats"
11+
keywords = ["cli", "github", "utility"]
12+
categories = ["command-line-utilities"]
13+
exclude = [".gitignore", ".github/*"]
14+
15+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
16+
17+
[dependencies]
18+
19+
[[bin]]
20+
name = "gstats"
21+
path = "src/main.rs"

0 commit comments

Comments
 (0)