basic_pathfinding/lib.rs
1pub mod coord;
2pub mod grid;
3mod node;
4pub mod pathfinding;
5mod search;
6
7#[macro_use]
8extern crate serde_derive;
9extern crate env_logger;
10extern crate log;
11
12// When the `wee_alloc` feature is enabled, use `wee_alloc` as the global
13// allocator.
14#[cfg(feature = "wee_alloc")]
15#[global_allocator]
16static ALLOC: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT;