Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/berendsliedrecht/cargo-feature-tree
https://github.com/berendsliedrecht/cargo-feature-tree
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/berendsliedrecht/cargo-feature-tree
- Owner: berendsliedrecht
- License: mit
- Created: 2022-07-25T19:13:32.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-22T18:42:20.000Z (over 1 year ago)
- Last Synced: 2024-10-08T22:20:55.274Z (3 months ago)
- Language: Rust
- Size: 48.8 KB
- Stars: 19
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cargo Feature Tree
List your features in a expanded and tree-like format
```console
λ cargo feature-tree
zmix
├── PS_Signature_G1
├── PS_Signature_G2
├── asm
│ └── std
│ ├── ver_enc
│ └── PS_Signature_G2
├── default
│ └── std
│ ├── ver_enc
│ └── PS_Signature_G2
├── portable
│ └── std
│ ├── ver_enc
│ └── PS_Signature_G2
├── std
│ ├── ver_enc
│ └── PS_Signature_G2
└── ver_enc
``````console
λ cargo feature-tree default
zmix
└── default
└── std
├── ver_enc
└── PS_Signature_G2
```## Installation
```console
cargo install cargo-feature-tree
```## Usage
```
cargo feature-treecargo feature-tree path-to-folder-containing-cargo.toml
cargo feature-tree path-to-explicit-cargo.toml
```