Vendor always-assert

This commit is contained in:
Lukas Wirth 2025-02-24 14:00:16 +01:00
parent 6d68c475c7
commit 9a462b7c36
5 changed files with 122 additions and 8 deletions

View file

@ -4,8 +4,10 @@ use std::io as sio;
use std::process::Command;
use std::{cmp::Ordering, ops, time::Instant};
pub mod anymap;
mod macros;
pub mod anymap;
pub mod assert;
pub mod non_empty_vec;
pub mod panic_context;
pub mod process;
@ -13,7 +15,6 @@ pub mod rand;
pub mod thin_vec;
pub mod thread;
pub use always_assert::{always, never};
pub use itertools;
#[inline(always)]