cargo-cycles 0.2.0

A cargo extension for detecting dependency cycles between crates and within modules for a workspace
# cargo-cycles

A cargo extension for detecting dependency cycles between crates and within modules for a workspace.

Circular dependencies indicate structural issues in the code and should be avoided in well-engineered projects.

## Usage

### Basic usage

```bash
# Run module-level cycle detection
cargo cycles

# Run with verbose output
cargo cycles --verbose
```

### Local installation

For dev installation, run `cargo install --path cargo-cycles --force`