Cargo Features
[dependencies]
testutils = { version = "0.0.0", default-features = false, features = ["all", "std", "ext_traits", "tiny_container", "os_cmd"] }
- default = all
-
The
all
feature is set by default whenevertestutils
is added without
somewhere in the dependency tree.default-features = false - all default = ext_traits, os_cmd, std, tiny_container
- std all os_cmd?
-
------------
Enables std of optional compact_str, optional shlex, and optional tinyvec_string
Affects
testutils::simple_benchmark
… - ext_traits all os_cmd?
-
Affects
testutils::traits
… - tiny_container all os_cmd?
-
Enables tinyvec_string
Affects
testutils::tiny_container
… - os_cmd all = ext_traits, std, tiny_container
-
Enables compact_str and shlex
Affects
testutils::os_cmd
…