-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
46 lines (42 loc) · 1.13 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
[package]
authors = [
"Scott Hutton <[email protected]>",
"Zachary Sims <[email protected]>",
"Jonas Zaddach <[email protected]>",
]
categories = ["api-bindings"]
description = "Async ClamAV bindings for Rust"
edition = "2021"
exclude = ["test_data/*"]
homepage = "https://github.com/Cisco-Talos/clamav-async-rs"
license = "GPL-2.0"
name = "clamav-async"
repository = "https://github.com/Cisco-Talos/clamav-async-rs"
version = "0.2.0"
keywords = ["antivirus", "async", "clamav"]
[features]
default = ["native-impl"]
# native-impl enables native implementations where possible (ignoring
# implementations provided by libclamav)
native-impl = []
# tokio-runtime activates async functionality
[dependencies]
bitflags = "2"
derivative = "2"
lazy_static = "1"
libc = "0.2"
log = "0.4"
thiserror = "1"
time = { version = "0.3", features = [
"parsing",
"macros",
"formatting",
"std",
] }
tokio = { version = "1", features = ["sync", "rt", "macros"] }
tokio-stream = { version = "0.1" }
clamav-sys = "1.0"
[target.'cfg(windows)'.dependencies]
bindings = { version = "0.5", package = "clamav-rs-bindings" }
[dev-dependencies]
tempfile = "3"