lexi_gram/
lib.rs

1// Copyright (c) 2025 Redglyph (@gmail.com). All Rights Reserved.
2
3pub mod lexi;
4pub mod gram;
5pub mod gen_parser;
6pub mod options;
7mod tests;
8
9// Main object:
10pub use lexi::Lexi;
11pub use gram::Gram;
12
13// Exports the version of the lib compatible with this module:
14pub use lexigram_lib;
15
16// package name & version
17pub const LEXIGRAM_PKG_NAME: &str = env!("CARGO_PKG_NAME");
18pub const LEXIGRAM_PKG_VERSION: &str = env!("CARGO_PKG_VERSION");