//! GeoPackage reader/writer surface backed by rusqlite.
//!
//! This module provides two content types:
//!
//! - **Feature layers** ([`GpkgLayer`] / [`GpkgFeature`]): tables with a geometry column and spatial index.
//! - **Attribute tables** ([`GpkgAttributeTable`] / [`GpkgAttributeRow`]): non-spatial tables with no geometry column.
//!
//! [`Gpkg`] is the connection entry point for both.
pub use GpkgAttributeRow;
pub use GpkgAttributeTable;
pub use GpkgFeatureBatchIterator;
pub use GpkgFeature;
pub use Gpkg;
pub use GpkgLayer;
pub use gpkg_geometry_to_wkb_bytes;
pub use ;