geoarrow_wasm/lib.rs
1pub mod array;
2pub mod broadcasting;
3pub mod error;
4#[cfg(feature = "geodesy")]
5pub mod reproject;
6pub mod transform_origin;
7pub mod utils;
8
9pub use transform_origin::TransformOrigin;
10
11// When the `wee_alloc` feature is enabled, use `wee_alloc` as the global
12// allocator.
13#[cfg(feature = "wee_alloc")]
14#[global_allocator]
15static ALLOC: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT;