Skip to main content

weavatrix_graph/
lib.rs

1#![forbid(unsafe_code)]
2#![doc = include_str!("../README.md")]
3
4mod attribute;
5mod error;
6mod graph;
7mod kind;
8mod legacy;
9mod model;
10
11pub use attribute::{AttributeValue, FiniteF64};
12pub use error::{GraphError, Result};
13pub use graph::{Graph, GraphBuilder};
14pub use kind::{EdgeKind, EvidenceKind, NodeKind};
15pub use legacy::{LegacyGraph, LegacyLink, LegacyNode, LegacyPoint, LegacyRange};
16pub use model::{Confidence, Edge, Node, NodeId, Provenance, SourcePosition, SourceSpan};