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