aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: 821bdeb249ec17159ccdb03c53512086be2e2b07 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![no_std]

pub mod cirque;
pub mod logger;

#[cfg(test)]
mod tests {
    #[test]
    fn pass() {
        assert!(0 == 0);
    }

    #[test]
    #[should_panic]
    fn fail() {
        assert!(1 == 0);
    }
}