osmx 0.2.0

Rust port of OSMExpress - a fast database file format for OpenStreetMap
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[macro_use]
extern crate lazy_static;

mod database;
mod types;

pub mod messages_capnp {
    // TODO should not be pub
    include!(concat!(env!("OUT_DIR"), "/messages_capnp.rs"));
}

pub use database::{Database, Locations, Nodes, Relations, Transaction, Ways, CELL_INDEX_LEVEL};
pub use types::{Location, Node, Region, Relation, RelationMember, Way};