tytanic-utils 0.2.2

Helper functions, types and traits for the tytanic test runner.
Documentation
//! A utility library for tytanic and its internal crates.
//!
//! This library makes _*no stability guarantees*_ at the moment and likely
//! won't ever.

pub mod assert;
pub mod fmt;
pub mod fs;
pub mod path;
pub mod result;
pub mod typst;

/// Re-exports of useful traits and types.
pub mod prelude {
    pub use result::ResultEx;

    use super::*;
}

mod private {
    pub(crate) trait Sealed {}

    impl<T, E> Sealed for Result<T, E> {}
}