diff --git a/Cargo.lock b/Cargo.lock index ca5d7ae0..6366a162 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1267,8 +1267,7 @@ checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd" [[package]] name = "yara" version = "0.17.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "bd6dc3ee945fad50031a0c8aac297bbc2541d1d7a18e24a2232e630545710e63" +source = "git+https://github.com/vthib/yara-rust?branch=version-0.17.0#754d9023add667be20b8271bf5de76656c7aefa8" dependencies = [ "bitflags", "lazy_static", @@ -1279,8 +1278,7 @@ dependencies = [ [[package]] name = "yara-sys" version = "0.17.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "57310e539a98018c118384447769ac47b1ecbafd8e20ce4248daf45802db95de" +source = "git+https://github.com/vthib/yara-rust?branch=version-0.17.0#754d9023add667be20b8271bf5de76656c7aefa8" dependencies = [ "bindgen", "cc", diff --git a/Cargo.toml b/Cargo.toml index 5c9a8590..96548a0d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -17,3 +17,9 @@ members = [ # - Handle VirtualSize=0 when searching through sections # - 89de6a730a4f60c005862b294de2f9fe444d1235 object = { git = 'https://github.com/vthib/boreal-object', branch = "version-0.30" } + +# Fork of yara crate, for fixes not yet published. +# +# - Fix of compilation on big-endian architectures: +# +yara = { git = 'https://github.com/vthib/yara-rust', branch = "version-0.17.0" }