acropolis 0.1.0

A minimal Rust crate for Acropolis.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Acropolis.

/// Returns the crate name.
pub fn name() -> &'static str {
    "acropolis"
}

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

    #[test]
    fn returns_name() {
        assert_eq!(name(), "acropolis");
    }
}