#cargo #features #manager #cli #cli-tool #crates

app cargo-features-manager

A tui tool to enable/disable & prune dependency features

16 releases (7 breaking)

new 0.8.0 May 7, 2024
0.7.0 Mar 30, 2024
0.4.0 Dec 15, 2023
0.3.3 Jul 28, 2023

#122 in Command line utilities

Download history 15/week @ 2024-01-15 27/week @ 2024-01-22 17/week @ 2024-01-29 1/week @ 2024-02-05 57/week @ 2024-02-12 180/week @ 2024-02-19 113/week @ 2024-02-26 25/week @ 2024-03-04 45/week @ 2024-03-11 16/week @ 2024-03-18 142/week @ 2024-03-25 68/week @ 2024-04-01 32/week @ 2024-04-08 13/week @ 2024-04-15 8/week @ 2024-04-22 180/week @ 2024-04-29

238 downloads per month

MIT license

75KB
2K SLoC

Cargo Features Manger

A TUI-like cli tool to manage the features of your rust-projects dependencies.

You can view all available features and easily toggle (enable & disable) them with one button click. All of your changes will directly be reflected in your Cargo.toml file.


install

cargo install cargo-features-manager


usage

To start the tool run cargo features in your project root dir.

This will open the dependency-selector:

dependencySelector

Now you can select the dependency for which you want to change the enabled features.

Selecting a dependency will open the feature-selector:

featureSelector

When using cargo features -d <dependency name> it will directly open the corresponding feature-selector.

navigation

to move up

to move down

Space | Enter | to select

ESC | to move back

dependency selector

Dependency which do not have any features are marked grey.
Dev-Dependency are marked with 🧪.
Build-Dependency are marked with 🛠️.
Workspace-Dependency are marked with 🗃️️.

dependencySelector

feature selector

All default features are marked Green.

greenMark

When hovering above a feature it shows other features which the selected feature requires.

featureDependency

Features marked with 📦 mean that they require an optional dependency.

featurePackageDependency

Features which an active feature requires are marked grey.

greyFeature

Features marked with 🗃️️ are enabled by the workspace dependency and can only be disabled by the workspace dependency

workspaceFeatures

search mode

At any point you can start typing like normal. This will start using your input as a search query.


prune

You can run prune with cargo features prune

this will disable all features which are not required to compile.

false positives

Some features may not cause the compilation to fail but still remove functionality. To limit the extent of such cases we keep a file including all known false positives. These features will not be disabled by cargo features prune and instead be display gray letting you know that you should consider if you really need the feature.

If you know of any other features that fall under this category fell free to open an Issue or PR!

If your project requires additional features to be always kept. You can add a section to your Cargo.toml named cargo-features-manager.keep in there you can define which features will be kept.

# Cargo.toml

# for individial packages
[cargo-features-manager.keep]
clap = ["default"]
color-eyre = ["capture-spantrace", "track-caller"]

# for the whole workspace
[workspace.cargo-features-manager.keep]
clap = ["default"]
color-eyre = ["capture-spantrace", "track-caller"]

Dependencies

~9–18MB
~248K SLoC