Skip to main content

rtz_core/
lib.rs

1//! The `rtz-core` crate.  Abstracts away core functionality, and functionality for build scripts.
2
3#![warn(rustdoc::broken_intra_doc_links, rust_2018_idioms, clippy::all, missing_docs)]
4#![allow(incomplete_features)]
5// `coverage(off)` is nightly-only; the feature (and the attrs below) activate only under
6// `cargo llvm-cov` on nightly, which sets `coverage_nightly`. On stable they are inert, so the
7// crate still builds and publishes on stable.
8#![cfg_attr(coverage_nightly, feature(coverage_attribute))]
9
10pub mod base;
11pub mod geo;