1#![deny(missing_debug_implementations, missing_copy_implementations)]
2#![warn(missing_docs, rustdoc::missing_crate_level_docs)]
3#![doc = include_str ! ("../readme.md")]
4#![doc(html_logo_url = "https://raw.githubusercontent.com/oovm/shape-rs/dev/projects/images/Trapezohedron.svg")]
5#![doc(html_favicon_url = "https://raw.githubusercontent.com/oovm/shape-rs/dev/projects/images/Trapezohedron.svg")]
6
7extern crate core;
8
9mod edges;
10mod entries;
11pub mod errors;
12mod graphs;
13pub mod iterators;
14pub mod placeholder;
15pub mod storages;
16mod vertexes;
17
18pub use crate::{
19 edges::{
20 actions::EdgeInsertID,
21 typed_edges::{DirectedEdge, IndeterminateEdge, UndirectedEdge},
22 Edge, EdgeDirection, EdgeID,
23 },
24 entries::{
25 query::{query_dynamic::Query, query_edge::EdgeQuery},
26 EntryEngine, GraphEntry, GraphKind,
27 },
28 graphs::{named::NamedGraph, weighted::WeightedGraph, GraphEngine, MutableGraph},
29 vertexes::{
30 get_iter::NodesVisitor, node_range_visitor::NodeRangeVisitor, node_slice_visitor::NodeSliceVisitor, Node, NodeID,
31 VisitOrder,
32 },
33};
34
35#[cfg(feature = "wolfram_wxf")]
36pub use wolfram_wxf::{ToWolfram, WolframValue};