Cargo Features

[dependencies]
crypto_secretstream = { version = "0.2.0", default-features = false, features = ["std", "alloc", "heapless"] }
default = std

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

std default = alloc

Enables std of chacha20, poly1305, and rand_core

alloc std

Enables alloc of aead

heapless

Enables heapless of aead

crypto_secretstream has 4 features without comments.