18 lines
409 B
Rust
18 lines
409 B
Rust
|
#![allow(clippy::manual_range_contains)]
|
||
|
#![warn(clippy::unreadable_literal, rust_2018_idioms)]
|
||
|
#![forbid(elided_lifetimes_in_paths, unsafe_code)]
|
||
|
|
||
|
pub mod cli;
|
||
|
pub mod iotro;
|
||
|
pub mod preset;
|
||
|
pub mod project;
|
||
|
pub mod question;
|
||
|
pub mod render;
|
||
|
pub mod time;
|
||
|
|
||
|
#[cfg(feature = "mem_limit")]
|
||
|
use std::sync::RwLock;
|
||
|
|
||
|
#[cfg(feature = "mem_limit")]
|
||
|
pub static MEM_LIMIT: RwLock<String> = RwLock::new(String::new());
|