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