gchemol_graph/lib.rs
1// [[file:../nxgraph.note::*docs][docs:1]]
2//! NxGraph: A networkx-like API wrapper around petgraph for chemistry.
3// docs:1 ends here
4
5// [[file:../nxgraph.note::*mods][mods:1]]
6// #![deny(missing_docs)] // rustdoc will fail if there is missing docs
7
8#[cfg(feature = "adhoc")]
9mod algo;
10mod graph;
11// mods:1 ends here
12
13// [[file:../nxgraph.note::195f6547][195f6547]]
14pub use crate::graph::*;
15
16// re-exports for adhoc uses
17#[cfg(feature = "adhoc")]
18pub use petgraph;
19// 195f6547 ends here