Cargo Features

[dependencies]
microcrates-bytes = { version = "0.4.8", default-features = false, features = ["std", "alloc", "nightly", "serde"] }
default = nightly

The nightly feature is set by default whenever microcrates-bytes is added without default-features = false somewhere in the dependency tree.

std = alloc, iovec

Affects buf::Buf.bytes_vec, buf_mut::BufMut.bytes_vec_mut

alloc nightly std?

Affects buf::Buf.collect

nightly default = alloc

Features from optional dependencies

In crates that don't use the dep: syntax, optional dependencies automatically become Cargo features. These features may have been created by mistake, and this functionality may be removed in the future.

serde implicit feature

Enables serde

serde:

A generic serialization/deserialization framework

Affects microcrates-bytes::serde

iovec std?