graphs_tools 0.2.0

Graphs tools.
<!-- {{# generate.module_header{} #}} -->

# Module :: graphs_tools
<!--{ generate.module_header.start() }-->
 [![experimental](https://raster.shields.io/static/v1?label=&message=experimental&color=orange)](https://github.com/emersion/stability-badges#experimental) [![rust-status](https://github.com/Wandalen/wTools/actions/workflows/module_graphs_tools_push.yml/badge.svg)](https://github.com/Wandalen/wTools/actions/workflows/module_graphs_tools_push.yml) [![docs.rs](https://img.shields.io/docsrs/graphs_tools?color=e3e8f0&logo=docs.rs)](https://docs.rs/graphs_tools) [![Open in Gitpod](https://raster.shields.io/static/v1?label=try&message=online&color=eee&logo=gitpod&logoColor=eee)](https://gitpod.io/#RUN_PATH=.,SAMPLE_FILE=module%2Fmove%2Fgraphs_tools%2Fexamples%2Fgraphs_tools_trivial.rs,RUN_POSTFIX=--example%20graphs_tools_trivial/https://github.com/Wandalen/wTools) [![discord](https://img.shields.io/discord/872391416519737405?color=eee&logo=discord&logoColor=eee&label=ask)](https://discord.gg/m3YfbXpUUY)
<!--{ generate.module_header.end }-->

**NOT ready for production**

<!--
### Basic use-case

```rust
#[ cfg( all( feature = "cell_factory", feature = "use_std" ) ) ]
{
  use graphs_tools::prelude::*;
  use wtools::prelude::*;
  let node : graphs_tools::canonical::Node = from!( 13 );
  assert_eq!( node.id(), 13.into() );
  println!( "{:?}", node );
  /* print : node::13 */
}
```

### To add to your project

```bash
cargo add graphs_tools
```

### Try out from the repository

``` shell test
git clone https://github.com/Wandalen/wTools
cd wTools
cd examples/graphs_tools_trivial
cargo run
```
-->