eflint_json/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//  LIB.rs
//    by Lut99
//
//  Created:
//    08 Nov 2023, 15:00:50
//  Last edited:
//    29 Nov 2023, 10:42:21
//  Auto updated?
//    Yes
//
//  Description:
//!   Rust implementation of the eFLINT JSON Specification.
//

// Declare modules
#[cfg(feature = "display_eflint")]
pub mod display_eflint;
pub mod spec;

// // Bring some of it into the crate namespace
#[cfg(feature = "display_eflint")]
pub use display_eflint::DisplayEFlint;
// pub use spec::v2_0_0;