repath 0.1.0

A fast pathfinding library using A* algorithm, caching, precomputation and path segmentation with concurrent pathfinding.
Documentation
1
2
3
4
use std::sync::Arc;
use crate::node::Node;

pub type Path = Arc<Vec<Node>>;