Cargo Features

[dependencies]
say-hello-jan = { version = "0.5.0", default-features = false, features = ["all", "hello", "bye"] }
default = hello

The hello feature is set by default whenever say-hello-jan is added without default-features = false somewhere in the dependency tree.

all = bye, hello
hello default all?

Affects say-hello-jan::say_hello, say-hello-jan::say_hello_to_everyone

bye all?

Affects say-hello-jan::say_goodbye, say-hello-jan::say_goodbye_everyone