maven_search_lib/
lib.rs

1pub mod format;
2pub mod http;
3pub mod types;
4
5#[macro_use]
6extern crate log;
7
8#[cfg(test)]
9mod tests {
10    #[test]
11    fn it_works() {
12        let result = 2 + 2;
13        assert_eq!(result, 4);
14    }
15}