1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! THIS IS IN lib.rs

pub mod crud_analysis;
pub mod low_level_analysis;
pub mod metrics_allocator;
pub mod configs;


// exported symbols
pub use {
    low_level_analysis::types::{
        BigOAlgorithmComplexity,
        TimeUnits,
    },
    configs::{ALLOC,OUTPUT},
    crud_analysis::test_crud_algorithms,
};