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