-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (44 loc) · 1.13 KB
/
Copy pathCargo.toml
File metadata and controls
48 lines (44 loc) · 1.13 KB
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
[package]
name = "depsentry"
version = "0.2.3"
edition = "2024"
authors = ["Mikhail Grishak <m.grishak@yandex.ru>"]
description = "A proactive supply chain security tool for Blue Teams"
homepage = "https://depsentry.com/"
license = "Apache-2.0"
repository = "https://github.com/Swek09/DepSentry"
readme = "README.md"
keywords = ["security", "supply-chain", "malware", "analysis", "cli"]
categories = ["command-line-utilities", "development-tools::testing"]
[features]
ds-alias = []
[dependencies]
clap = { version = "4.4", features = ["derive"] }
tokio = { version = "1.3", features = ["full"] }
reqwest = { version = "0.11", features = ["json", "blocking"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
rayon = "1.8"
entropy = "0.4.1"
tempfile = "3.8"
colored = "2.0"
tabled = "0.15"
walkdir = "2.4"
regex = "1.10"
tar = "0.4"
flate2 = "1.0"
zip = "0.6"
thiserror = "1.0"
anyhow = "1.0"
chrono = { version = "0.4", features = ["serde"] }
strsim = "0.10"
blake3 = "1.5"
notify = "6.1"
[[bin]]
name = "depsentry"
path = "src/main.rs"
[[bin]]
name = "ds"
path = "src/main.rs"
required-features = ["ds-alias"]