-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
49 lines (46 loc) · 1.31 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
[package]
name = "dean"
version = "0.0.1"
edition = "2021"
authors = ["[email protected]"]
description = "Static (De)pendency (An)alyzer"
repository = "https://github.com/StaticDependencyAnalyzer/dean"
readme = "README.md"
keywords = [
"dependency",
"dependencies",
"analysis"
]
categories = [
"development-tools",
]
license = "custom"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.78"
toml = "0.5.9"
clap = { version = "3.1.6", features = ["derive"] }
reqwest = { version = "0.11.9", features = ["json"] }
regex = "1.5.5"
log = "0.4.14"
simple_logger = "2.1.0"
git2 = { version = "0.16.0", features = ["vendored-libgit2", "vendored-openssl"] }
tempfile = "3.3.0"
anyhow = "1.0.56"
itertools = "0.10.3"
serde_yaml = "0.9.4"
dirs-next = "2.0.0"
lazy_static = "1.4.0"
time = { version = "0.3.9", features = ["parsing"] }
rusqlite = { version = "0.28.0", features = ["bundled"] }
tokio = { version = "1.21.2", features = ["full"] }
async-trait = "0.1.57"
csv-async = { version = "1.2.4", features = ["tokio"] }
tokio-stream = "0.1.11"
moka = { version = "0.9.4", features = ["future"] }
async-recursion = "1.0.0"
futures = "0.3.25"
[dev-dependencies]
mockall = "0.11.0"
rand = "0.8.5"