ratio_graph/lib.rs
1//! # Ratio's graph library
2//!
3//! ## License
4//!
5//! This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
6//! If a copy of the MPL was not distributed with this file,
7//! You can obtain one at <https://mozilla.org/MPL/2.0/>.
8//!
9//! **Code examples both in the docstrings and rendered documentation are free to use.**
10
11#[cfg(feature = "serde")]
12pub mod datasets;
13pub mod edge;
14pub mod graph;
15pub mod mdm;
16pub mod metadata;
17pub mod node;
18#[cfg(feature = "serde")]
19mod serde_utils;
20pub mod serialize;
21pub use edge::*;
22pub use graph::*;
23pub use metadata::*;
24pub use node::*;