Skip to content

Commit

Permalink
cloning GraphFrames is now supported
Browse files Browse the repository at this point in the history
  • Loading branch information
angelip2303 committed Jun 27, 2023
1 parent f518eab commit cfcd2b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pregel-rs"
version = "0.0.12"
version = "0.0.13"
authors = [ "Ángel Iglesias Préstamo <angel.iglesias.prestamo@gmail.com>" ]
description = "A Graph library written in Rust for implementing your own algorithms in a Pregel fashion"
documentation = "https://docs.rs/crate/pregel-rs/latest"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ cargo new my_pregel_project

```toml
[dependencies]
pregel-rs = "0.0.12"
pregel-rs = "0.0.13"
```

4. _Implement your graph algorithm_: Now you can start implementing your graph
Expand Down
1 change: 1 addition & 0 deletions src/graph_frame.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ use std::{error, fmt};
///
/// * `edges`: The `edges` property is a `DataFrame` that represents the edges of a
/// graph. It must contain -- at least -- two columns: Src and Dst.
#[derive(Clone)]
pub struct GraphFrame {
/// The `vertices` property is a `DataFrame` that represents the nodes in a graph.
pub vertices: DataFrame,
Expand Down

0 comments on commit cfcd2b6

Please sign in to comment.