nornir 0.4.10

Companion to cargo: dependency tracking, release gating, deploy, benchmarks, and documentation assembly. Project-agnostic.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Cross-crate dependency tracking. Stub — to grow into a real
//! workspace dependency walker that complements `cargo tree` with
//! workspace-aware grouping (e.g., "which crates transitively depend
//! on znippy-compress?").

use anyhow::Result;
use std::path::Path;

pub struct DepGraph;

impl DepGraph {
    pub fn load(_repo_root: &Path) -> Result<Self> {
        Ok(DepGraph)
    }
}