1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
#[cfg(feature = "collision-resistant")]
pub mod collision_resistant;
pub mod adjective_noun;

#[cfg(feature = "collision-resistant")]
mod schema;

#[cfg(feature = "collision-resistant")]
#[macro_use]
extern crate diesel;

#[macro_use]
extern crate anyhow;

pub trait Wishable {
    fn wish(&mut self) -> anyhow::Result<String>;
}