Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ealmloff/crate-vis
https://github.com/ealmloff/crate-vis
Last synced: 23 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ealmloff/crate-vis
- Owner: ealmloff
- Created: 2023-05-07T00:10:23.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-05-08T18:21:20.000Z (over 1 year ago)
- Last Synced: 2024-12-22T04:41:59.566Z (about 1 month ago)
- Language: Rust
- Size: 38.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)