ripex 0.2.0

Multi-language structural parsing and fact extraction.
Documentation
1
2
3
4
5
6
7
8
/// Maximum input size in bytes (1 MB).
pub const MAX_INPUT_SIZE: usize = 1_048_576;

/// Maximum number of tokens a lexer may produce before being rejected.
pub const MAX_TOKENS: usize = 200_000;

/// Maximum parser recursion depth before we abort to avoid stack overflow.
pub const MAX_RECURSION: u32 = 512;