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