1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
//! This Rust crate aims to abstract and implement a general global Geographic Information System (GIS) data catalog and acquisition functionality.

#![warn(unreachable_pub, missing_docs, missing_debug_implementations)]
#![doc(html_logo_url = "TODO.svg")]
#![doc(html_root_url = "https://docs.rs/gis_puller/0.1.0")]
#![doc(issue_tracker_base_url = "https://github.com/pinkforest/rust-git_puller/issues/")]

#[cfg(doctest)]
doc_comment::doctest!("../README.md");

#[macro_use]
extern crate quick_error;

/// https://crates.io/crates/rstest_reuse - See Cavelets                                                                                                                                                  
#[cfg(test)]
use rstest_reuse;

//#[macro_use]
//mod macros;

pub mod au;
pub mod settings;