-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathCargo.toml
38 lines (35 loc) · 1.02 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
[package]
name = "yara-sys"
version = "0.29.0"
authors = ["Hugo Laloge <hugo.laloge@gmail.com>"]
license = "MIT OR Apache-2.0"
description = "Native bindings to the libyara library"
readme = "README.md"
repository = "https://github.com/Hugal31/yara-rust"
keywords = ["yara", "ffi"]
categories = ["external-ffi-bindings"]
links = "yara"
edition = "2018"
[features]
default = ["bindgen", 'module-dotnet', 'module-dex', 'module-macho', 'module-hash', 'ndebug']
bundled-4_5_2 = []
vendored = ["cc", "glob", "fs_extra"]
module-cuckoo = []
module-magic = []
module-macho = []
module-dex = []
module-debug-dex = []
module-dotnet = []
module-hash = []
profiling = []
ndebug = []
openssl-static = []
yara-static = []
[build-dependencies]
bindgen = { version = "0.68", optional = true, default-features = false, features = [ "runtime" ] }
cc = { version = "1.0", optional = true }
glob = { version = "0.3", optional = true }
fs_extra = { version = "1.2", optional = true }
[package.metadata.docs.rs]
no-default-features = true
features = ["bundled-4_5_2"]