cargo-feature 0.2.0

Allows conveniently modify features of crate
cargo-feature-0.2.0 is not a library.

cargo-feature

preview

Install

cargo install cargo-feature

Usage

# add serde_derive feature to build-dependency of serde
cargo feature serde b+serde_derive

# add HtmlDivElement feature to dependency of web_sys 
cargo feature web_sys n+HtmlDivElement

# same as above but remove
cargo feature web_sys n-HtmlDivElement