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