-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
46 lines (41 loc) · 888 Bytes
/
Cargo.toml
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
[package]
authors = ["chenjiandongx <[email protected]>"]
edition = "2021"
homepage = "https://github.com/chenjiandongx/gitv"
keywords = ["git", "visualization", "stats", "analyze", "tool"]
description = "A git repos analyzing and visualizing tool built in Rust."
license = "MIT/Apache-2.0"
name = "gitv"
readme = "README.md"
repository = "https://github.com/chenjiandongx/gitv"
version = "0.1.0"
[[bin]]
name = "gitv"
path = "src/main.rs"
[dependencies]
anyhow = "1"
async-trait = "0.1"
chrono = "0.4"
csv = "1"
datafusion = "7"
dirs = "4"
humantime = "2"
lazy_static = "1"
num_cpus = "1"
rand = "0.8"
regex = "1"
rustyline = "9"
serde_json = "1"
serde_yaml = "0.8"
tera = "1"
tokei = "12"
tokio = "1"
[dependencies.reqwest]
features = ["json"]
version = "0.11"
[dependencies.clap]
features = ["derive"]
version = "3.1.5"
[dependencies.serde]
features = ["derive"]
version = "1"