raphtory_core/
lib.rs

1//! # raphtory
2//!
3//! `raphtory` is the core module for the raphtory library.
4//!
5//! The raphtory library is a temporal graph analytics tool, which allows users to create
6//! and analyze graph data with time.
7//!
8//! This crate provides the core data structures and functions for working with temporal graphs,
9//! as well as building and evaluating algorithms.
10//!
11//! **Note** this module is not meant to be used as a standalone crate, but in conjunction with the
12//! raphtory_db crate.
13//!
14//! For example code, please see the raphtory_db crate.
15//!
16//! ## Supported Platforms
17//!
18//! `raphtory` supports  support for the following platforms:
19//!
20//! **Note** they must have Rust 1.83 or later.
21//!
22//!    * `Linux`
23//!    * `Windows`
24//!    * `macOS`
25//!
26
27pub mod entities;
28#[cfg(feature = "python")]
29mod python;
30pub mod storage;
31pub mod utils;