Recursive
With recursive you can easily make (indirectly) recursive functions without
worrying about stack overflows by marking them as #[recursive]:
use recursive;
Functions marked with #[recursive] will automatically grow the stack size if
it is too small when called. See the
crate docs for details.
License
recursive is licensed under the MIT license.