walk/lib.rs
1#![warn(missing_docs)]
2//! # walk (compatibility shim)
3//!
4//! This crate now re-exports [`graphops`] and exists only for compatibility.
5//! New code should depend on and import `graphops` directly.
6//!
7//! In other words:
8//! - **Before**: `use walk::pagerank`
9//! - **After**: `use graphops::pagerank`
10
11pub use graphops::*;