render_video/src/lib.rs
Dominic ba9c6ede3e
All checks were successful
Trigger quay.io Webhook / run (push) Successful in 5s
extract stuff into lib/main
2024-06-20 18:30:53 +02:00

17 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());