Add link in lib module doc

This commit is contained in:
2026-08-06 20:54:42 +02:00
parent 10d0c382cc
commit 7d8c9aaa10
+2 -1
View File
@@ -10,7 +10,7 @@
//! * [`EntityMap`] to freely associate custom data with vertices and edges, //! * [`EntityMap`] to freely associate custom data with vertices and edges,
//! * Connectivity and pathing algorithms: [Dijkstra's algorithm], [DFS], and [BFS] in different //! * Connectivity and pathing algorithms: [Dijkstra's algorithm], [DFS], and [BFS] in different
//! variants, //! variants,
//! * Exposed traits to implement custom graph data structures or algorithms. //! * Exposed [`traits`] to implement custom graph data structures or algorithms.
//! //!
//! # Usage example //! # Usage example
//! //!
@@ -125,6 +125,7 @@
//! [`GraphTopology::Edge`]: crate::traits::GraphTopology::Edge //! [`GraphTopology::Edge`]: crate::traits::GraphTopology::Edge
//! [`GraphTopology::Vertex`]: crate::traits::GraphTopology::Vertex //! [`GraphTopology::Vertex`]: crate::traits::GraphTopology::Vertex
//! [`GraphTopologyDeletion`]: crate::traits::GraphTopologyDeletion //! [`GraphTopologyDeletion`]: crate::traits::GraphTopologyDeletion
//! [`traits`]: crate::traits
#![warn(missing_docs)] #![warn(missing_docs)]