eflint_json/lib.rs
// 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;