nornir 0.4.32

Companion to cargo: dependency tracking, release gating, deploy, benchmarks, and documentation assembly. Project-agnostic.
1
2
3
4
5
6
7
8
9
//! Module-level call graph via `syn` AST walk.

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

pub fn extract(_repo_root: &Path) -> Result<Graph> {
    Ok(Graph::default())
}