-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
25 lines (23 loc) · 983 Bytes
/
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
[workspace]
members = [
"boreal-parser",
"boreal",
"boreal-cli",
]
[patch.crates-io]
# Fork of object crate, for additional features, but also hacks that probably cannot
# be pushed upstreamed, but are required to align with yara's behavior
#
# - Handling of FileAlignment on section's offset to raw data:
# - 2004ec0adb8c2e5d7de09dfcd5e4c80c14cae296
# - 7b7257d768b09a2664cbab2a46a0c37779c91d9c
# - Retrieval of raw name for sections
# - f9caed56c480f8e3c5e1f971cab76ad0a1ccae5a
# - Handle VirtualSize=0 when searching through sections
# - 89de6a730a4f60c005862b294de2f9fe444d1235
object = { git = 'https://github.com/vthib/boreal-object', branch = "version-0.30" }
# Fork of yara-rust crate, for a few in advance changes.
#
# - Add OPENSSL_DIR handling for windows w/ openssl compilation.
# - Helpers to get module values during scan: https://github.com/Hugal31/yara-rust/pull/96
yara = { git = 'https://github.com/vthib/yara-rust', branch = "version-0.16" }