4 Commits

4 changed files with 3 additions and 4 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
[package]
name = "grapherity"
version = "0.2.2"
version = "0.2.3"
authors = ["Stefan Müller"]
edition = "2024"
rust-version = "1.85.0"
+1 -1
View File
@@ -15,7 +15,7 @@ For more information, see the [documentation](https://docs.rs/grapherity/latest/
## Example
```rust
```
// Brings commonly used traits into scope.
use grapherity::prelude::*;
use grapherity::models::Graph;
-2
View File
@@ -127,8 +127,6 @@
//! [`GraphTopology::Vertex`]: crate::traits::GraphTopology::Vertex
//! [`GraphTopologyDeletion`]: crate::traits::GraphTopologyDeletion
#![warn(missing_docs)]
pub mod algorithms;
pub mod maps;
pub mod models;
+1
View File
@@ -222,6 +222,7 @@ pub trait IncidenceCursor<G: GraphTopology + ?Sized> {
/// ```
/// # use grapherity::prelude::*;
/// # use grapherity::models::Graph;
/// # use grapherity::traits::IncidenceCursor;
/// // Constructs a graph with two vertices connected to `v`.
/// let mut graph = Graph::new();
/// let v = graph.add_vertex();