ferrisup 0.2.5

A versatile Rust project bootstrapping tool - start anywhere, scale anywhere
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Library template created with FerrisUp

/// Returns a greeting message
pub fn hello() -> String {
    "Hello from FerrisUp library template!".to_string()
}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_hello() {
        assert_eq!(hello(), "Hello from FerrisUp library template!");
    }
}