2024-06-08 11:21:54 -04:00
|
|
|
#![allow(clippy::derivable_impls, clippy::all)]
|
|
|
|
extern crate flatbuffers;
|
2024-06-13 11:02:28 -04:00
|
|
|
|
2024-06-02 09:17:12 -04:00
|
|
|
pub mod cli_arguments;
|
2024-07-09 13:08:04 -04:00
|
|
|
pub mod comparison;
|
2024-06-05 08:58:41 -04:00
|
|
|
pub mod dot_writer;
|
2024-06-05 06:04:26 -04:00
|
|
|
pub mod f64_utils;
|
2024-06-05 04:31:07 -04:00
|
|
|
pub mod file_util;
|
|
|
|
pub mod hash_util;
|
2024-06-13 05:51:10 -04:00
|
|
|
pub mod http_request;
|
2024-05-30 10:39:51 -04:00
|
|
|
pub mod lexicographic_file_walker;
|
2024-06-13 11:02:28 -04:00
|
|
|
pub mod local_task;
|
2024-06-08 11:21:54 -04:00
|
|
|
pub mod location;
|
2024-05-31 15:07:10 -04:00
|
|
|
pub mod nearest_response;
|
2024-05-30 11:10:23 -04:00
|
|
|
pub mod osm;
|
|
|
|
pub mod osm_db;
|
2024-07-04 08:48:58 -04:00
|
|
|
pub mod osrm_error;
|
2024-05-30 11:10:23 -04:00
|
|
|
pub mod osrm_world;
|
2024-06-13 11:02:28 -04:00
|
|
|
pub mod route_response;
|
2024-06-02 09:17:12 -04:00
|
|
|
pub mod scenario_id;
|
2024-06-08 11:21:54 -04:00
|
|
|
|
|
|
|
// flatbuffer
|
|
|
|
#[allow(dead_code, unused_imports)]
|
2024-06-13 11:02:28 -04:00
|
|
|
#[path = "../../target/flatbuffers/fbresult_generated.rs"]
|
|
|
|
pub mod fbresult_flatbuffers;
|
|
|
|
#[allow(dead_code, unused_imports)]
|
2024-06-08 11:21:54 -04:00
|
|
|
#[path = "../../target/flatbuffers/position_generated.rs"]
|
|
|
|
pub mod position_flatbuffers;
|
|
|
|
#[allow(dead_code, unused_imports)]
|
2024-06-13 11:02:28 -04:00
|
|
|
#[path = "../../target/flatbuffers/route_generated.rs"]
|
|
|
|
pub mod route_flatbuffers;
|
2024-06-08 11:21:54 -04:00
|
|
|
#[allow(dead_code, unused_imports)]
|
|
|
|
#[path = "../../target/flatbuffers/table_generated.rs"]
|
|
|
|
pub mod table_flatbuffers;
|
|
|
|
#[allow(dead_code, unused_imports)]
|
2024-06-13 11:02:28 -04:00
|
|
|
#[path = "../../target/flatbuffers/waypoint_generated.rs"]
|
|
|
|
pub mod waypoint_flatbuffers;
|