Cargo Features
[dependencies]
cen-say-hello = { version = "0.1.2", default-features = false, features = ["all", "hello", "bye"] }
- default = hello
-
The
hello
feature is set by default whenevercen-say-hello
is added without
somewhere in the dependency tree.default-features = false - all = bye, hello
- hello default all?
-
Affects
cen-say-hello::say_hello
,cen-say-hello::say_hello_to_everyone
,cen-say-hello::say_good_bye_to_everyone
… - bye all?
-
Affects
cen-say-hello::say_good_bye
…