v0.0.13
Pre-release
Pre-release
We are excited to announce the release of pregel-rs
version 0.0.13! This release introduces a significant improvement by deriving the implementation of the Clone
trait. The Clone
trait provides a convenient way to create copies of objects in Rust, allowing you to clone your graph structures effortlessly.
New Features
- Implemented automatic derivation of the Clone trait for graph structures. With this enhancement, you can now easily create clones of your graph objects using the
clone()
method, making it more convenient to work with multiple copies of the same graph simultaneously. - This improvement eliminates the need for manual implementation of the
Clone
trait, reducing the amount of boilerplate code required.