libgraph 0.1.0

A Rust crate providing a generic graph data structure and fundamental graph algorithms.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
[package]
name = "libgraph"
version = "0.1.0"
edition = "2024"
license = "MIT"
description = "A Rust crate providing a generic graph data structure and fundamental graph algorithms."
repository = "https://github.com/vgasparyan1995/libgraph"
keywords = ["graph", "dfs", "bfs", "algorithms"]
categories = ["algorithms"]

[dependencies]
itertools = "0.14.0"
rand = "0.9.1"
serde = { version = "1.0.228", features = ["derive"] }