1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
use std::rc::Rc;

#[cfg(test)]
#[macro_use]
extern crate test_case;

#[macro_use]
extern crate log;

extern crate thiserror;

pub mod parser {
    //! GRUB theme parsing functionality
    pub mod pff2;
    pub mod theme_txt;
}

pub mod render {
    //! GRUB theme rendering functionality
    pub mod pff2;
}

pub type OwnedSlice<T> = Rc<T>;

trait Sealed {}