Cargo Features
[dependencies]
lib-hello = { version = "0.3.0", default-features = false, features = ["greeting", "farewell", "communication"] }
- default = communication
-
The
communication
feature is set by default wheneverlib-hello
is added without
somewhere in the dependency tree.default-features = false - greeting communication
-
Affects
lib-hello::saying_hello
… - farewell communication
-
Affects
lib-hello::saying_bye
… - communication default = farewell, greeting
-
Affects
lib-hello::hello_and_bye
…