dfs-rs 0.0.2

A simple crate that wrote a dfs implementation with back tracking with the utilization of `Drop` trait. Currently it is VERY unstable, please do not use before the crate update to v0.1.0
Documentation
1
2
3
4
5
6
7
8
9
#![feature(associated_type_bounds)]

pub mod indexable;
pub mod proto;

#[cfg(feature = "unsafe")]
pub use crate::indexable::*;
#[cfg(not(feature = "unsafe"))]
pub use crate::proto::*;