Cargo Features

[dependencies]
testanything = { version = "0.4.2", default-features = false, features = ["std", "alloc"] }
default = std

The std feature is set by default whenever testanything is added without default-features = false somewhere in the dependency tree.

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.