Cargo Features
[dependencies]
rust-crates-mcnwr = { version = "0.3.0", default-features = false, features = ["all", "hello", "bye"] }
- default = hello
-
The
hello
feature is set by default wheneverrust-crates-mcnwr
is added without
somewhere in the dependency tree.default-features = false - all = bye, hello
- hello default all?
-
Affects
rust-crates-mcnwr::say_hello
,rust-crates-mcnwr::say_goodbye
… - bye all?
-
Affects
rust-crates-mcnwr::say_hello_to_everyone
,rust-crates-mcnwr::say_goodbye_to_everyone
…