oxigeo-node 0.2.1

Node.js bindings for OxiGeo - Pure Rust geospatial data abstraction library
Documentation
1
2
3
4
5
6
7
8
//! Build script for `oxigeo-node`: runs the `napi-build` setup step so the
//! generated N-API bindings link correctly against the Node.js runtime.

extern crate napi_build;

fn main() {
    napi_build::setup();
}