Cargo Features
[dependencies]
testanything = { version = "0.4.2", default-features = false, features = ["std", "alloc"] }
- default = std
-
The
std
feature is set by default whenevertestanything
is added without
somewhere in the dependency tree.default-features = false - std default
-
Provide all features. Requires a dependency on the Rust standard library.
Affects
testanything::tap_writer
… - alloc
-
Provide everything except printing to stdout. Uses
alloc
, which is a subset of std but may be enabled without depending on all of std.