-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (26 loc) · 853 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
[package]
name = "git_detective"
version = "0.1.0"
authors = ["NickHackman <[email protected]>"]
travis-ci = { repository = "https://github.com/NickHackman/git_detective-rs", branch = "development" }
coveralls = { repository = "https://github.com/NickHackman/git_detective-rs", branch = "development", service = "github" }
is-it-maintained-open-issues = { repository = "https://github.com/NickHackman/git_detective-rs" }
edition = "2018"
[dependencies]
url = "2.1.1"
thiserror = "1.0.19"
chrono = "0.4.11"
rayon = "1.3.0"
[dependencies.git2]
version = "0.13.6"
default-features = false
features = ["https"]
[dependencies.tokei]
# Personal fork of Tokei in order to annotate files
git = "https://github.com/NickHackman/tokei.git"
branch = "annotate-files"
[dev-dependencies]
criterion = "0.3.2"
[[bench]]
name = "git_detective"
harness = false