-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
54 lines (42 loc) · 1.12 KB
/
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
47
48
49
50
51
52
53
54
[package]
name = "git-scanner"
version = "0.2.0"
edition = "2018"
authors = ["Korny Sietsma <[email protected]>", "Phodal HUANG<[email protected]>"]
description = "Git Scanner for code analaysis"
categories = ["text-processing", "command-line-interface", "development-tools"]
exclude = [
".coco/*",
"benchmark/*",
"fixtures/*",
"targets/*",
".github/*",
".gitattributes",
".adr.json",
]
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/inherd/git-scanner"
documentation = "https://github.com/inherd/git-scanner"
homepage = "https://github.com/inherd/git-scanner"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
regex = "1"
failure = "0.1.8"
chrono = "0.4"
serde = { version = "1.0.114",features = ["derive","rc"] }
erased-serde = "0.3"
serde_json = "1.0"
git2 = "0.13.0"
indicatif = "0.13.0"
derive_builder = "0.8.0"
derive-getters = "0.1.0"
log = "0.4"
lazy_static = "1.4.0"
path-slash = "0.1.3"
ignore = "0.4"
[dev-dependencies]
test_shared = { path = "test_shared" }
tempfile = "3.1.0"
zip = "0.5.3"
pretty_assertions = "0.6.1"