Cargo Features
[dependencies]
say-hello-nicovicz = { version = "0.4.0", default-features = false, features = ["full", "hello", "goodbye", "everyone", "slim"] }
- default = hello
-
The
hello
feature is set by default wheneversay-hello-nicovicz
is added without
somewhere in the dependency tree.default-features = false - full = everyone, goodbye, hello
- hello default full? slim?
-
Affects
say-hello-nicovicz::say_hello
… - goodbye full? slim?
-
Affects
say-hello-nicovicz::say_goodbye
… - everyone full?
-
Affects
say-hello-nicovicz::say_goodbye_everyone
… - slim = goodbye, hello