-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
78 lines (69 loc) · 2.67 KB
/
Cargo.toml
File metadata and controls
78 lines (69 loc) · 2.67 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
[package]
name = "malwaredb-virustotal"
version.workspace = true
description = "Logic and datatypes for interacting with VirusTotal"
keywords = ["cybersecurity", "malware", "malware-analysis", "virustotal"]
exclude = ["testdata"]
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
rust-version.workspace = true
[features]
default = []
chrono = ["dep:chrono"]
clap = ["dep:clap"]
native-tls = ["reqwest/native-tls"]
native-tls-vendored = ["reqwest/native-tls-vendored"]
rustls = ["reqwest/rustls"]
tokio = ["dep:tokio"]
tracing = ["dep:tracing"]
unsafe-serialization = []
[dependencies]
bytes = { workspace = true }
chrono = { workspace = true, features = ["clock", "serde"], optional = true }
clap = { workspace = true, features = ["derive", "env", "std"], optional = true }
reqwest = { workspace = true, features = ["gzip", "http2", "multipart", "stream"] }
serde = { workspace = true, features = ["derive", "std"] }
serde_json = { workspace = true, features = ["alloc"] }
tokio = { workspace = true, features = ["fs"], optional = true }
tracing = { workspace = true, optional = true }
zeroize = { workspace = true, features = ["derive"] }
[dev-dependencies]
hex = { workspace = true, features = ["alloc"] }
sha2 = { workspace = true }
tokio = { workspace = true, features = ["rt", "macros"] }
tokio-test = { workspace = true }
rstest = { workspace = true }
[package.metadata.cargo-udeps.ignore]
development = ["tokio-test"]
[package.metadata.docs.rs]
features = ["chrono", "clap"]
[workspace]
resolver = "2"
members = ["bin"]
[workspace.package]
authors = ["Richard Zak <richard.j.zak@gmail.com>"]
edition = "2021"
homepage = "https://malwaredb.net/"
license = "Apache-2.0"
repository = "https://github.com/malwaredb/vt-client"
version = "0.5.4"
rust-version = "1.85"
[workspace.dependencies]
# Internal depencency
malwaredb-virustotal = { version = "0.5", path = ".", default-features = false }
anyhow = { version = "1.0", default-features = false }
bytes = { version = "1.11", default-features = false }
chrono = { version = "0.4", default-features = false }
clap = { version = "4.6", default-features = false }
hex = { version = "0.4", default-features = false }
reqwest = { version = "0.13", default-features = true }
rstest = { version = "0.26", default-features = false }
serde = { version = "1.0", default-features = false }
serde_json = { version = "1.0", default-features = false }
sha2 = { version = "0.11", default-features = false }
tokio = { version = "1", default-features = false }
tokio-test = { version = "0.4", default-features = false }
tracing = { version = "0.1", default-features = false }
zeroize = { version = "1.8", default-features = false }