geoarrow_flatgeobuf/lib.rs
1//! Read from and write to [FlatGeobuf](https://flatgeobuf.org/) files.
2//!
3//! For more information, refer to module documentation for [`reader`].
4
5#![warn(missing_docs)]
6#![cfg_attr(docsrs, feature(doc_cfg))]
7#![cfg_attr(not(test), deny(unused_crate_dependencies))]
8#![doc(
9 html_logo_url = "https://github.com/geoarrow.png",
10 html_favicon_url = "https://github.com/geoarrow.png?size=32"
11)]
12
13pub mod reader;
14pub mod writer;