Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ealmloff/crate-vis


https://github.com/ealmloff/crate-vis

Last synced: 23 days ago
JSON representation

Awesome Lists containing this project

README

        

A small library for creating a visualization of the crate dependency graph.

## Usage

```rust
use crate_vis::*;

let cfg = VisualizationCfg{
workspace_only: true,
manifest_path: "path/to/Cargo.toml".into(),
..Default::default()
};

generate_graph(&cfg).unwrap();
```

![graph](cli/dependency_graph.svg)