-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathCargo.toml
51 lines (45 loc) · 1.35 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
50
51
[workspace]
members = ["yara-sys"]
[package]
name = "yara"
version = "0.29.0"
authors = ["Hugo Laloge <[email protected]>"]
license = "MIT OR Apache-2.0"
description = "Rust bindings for VirusTotal/yara"
readme = "README.md"
repository = "https://github.com/Hugal31/yara-rust"
keywords = ["yara"]
categories = ["api-bindings"]
edition = "2021"
rust-version = "1.63"
[features]
default = ["bindgen", 'module-dotnet', 'module-dex', 'module-macho', 'module-hash', 'ndebug']
bindgen = ["yara-sys/bindgen"]
bundled-4_5_2 = ["yara-sys/bundled-4_5_2"]
vendored = ["yara-sys/vendored"]
module-cuckoo = ["yara-sys/module-cuckoo"]
module-magic = ["yara-sys/module-magic"]
module-macho = ["yara-sys/module-macho"]
module-dex = ["yara-sys/module-dex"]
module-debug-dex = ["yara-sys/module-debug-dex"]
module-dotnet = ["yara-sys/module-dotnet"]
module-hash = ["yara-sys/module-hash"]
profiling = ["yara-sys/profiling"]
ndebug = ["yara-sys/ndebug"]
openssl-static = ["yara-sys/openssl-static"]
yara-static = ["yara-sys/yara-static"]
[dependencies]
bitflags = "2.4"
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"], optional = true }
[dev-dependencies]
crossbeam = "0.8"
libflate = "2.0"
tempfile = "3.9"
[dependencies.yara-sys]
path = "yara-sys"
version = "0.29.0"
default-features = false
[package.metadata.docs.rs]
no-default-features = true
features = ["bundled-4_5_2"]