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
// SPDX-License-Identifier: Apache-2.0
//#![deny(clippy::cargo)]
// Clippy has issues with some names in the research list
/// Data structures and logic for storing training/inference data
/// File type detection and types
/// Data structure and logic for training a model and calculating predictions
/// N-gramming logic and data structures
/// Tests for similarity between files
/// Malware Modeler version
pub const VERSION: &str = concat!;
/// Maximum recursion depth when walking a directory structure
pub const MAX_RECURSION_DEPTH: usize = 10;
/// Convenience type for vector of bytes
pub type Bytes = ;