-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (35 loc) · 775 Bytes
/
Copy pathCargo.toml
File metadata and controls
38 lines (35 loc) · 775 Bytes
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
[package]
name = "vt_analysis"
version = "0.1.0"
edition = "2021"
description = "VirusTotal File & URL Analysis via vt-cli"
[[bin]]
name = "vt_analysis"
path = "src/main.rs"
[dependencies]
# CLI argument parsing
clap = { version = "4", features = ["derive"] }
# JSON handling
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Coloured terminal output
colored = "2"
# Cross-platform home directory
home = "0.5"
# URL detection
url = "2"
# Base64 encode/decode
base64 = "0.22"
# Time utilities
chrono = "0.4"
# SHA-256
sha2 = "0.10"
hex = "0.4"
# HTTP for webhook notifications
reqwest = { version = "0.12", features = ["blocking", "json"] }
# Temporary files
tempfile = "3"
# Glob expansion
glob = "0.3"
# Anyhow for ergonomic error handling
anyhow = "1"