Cargo Features

[dependencies]
rshyper = { version = "0.0.1", default-features = false, features = ["full", "alloc", "rand", "rng", "serde", "tracing", "std"] }
default full? = std

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

full = default, rand, serde, tracing
alloc std

********* [FF] Dependencies *********

Enables alloc of num and optional serde

rand full? rng? = rng

Enables rand and rand_distr, rand of num

rng rand?

Enables small_rng and thread_rng of rand

serde full?

Enables serde_derive, serde of num and optional rand and derive of serde

serde:

Provide derive(Serialize, Deserialize) macros.

tracing full?

Enables attributes of tracing

std default = alloc

********* [FF] Environments *********

Enables std of anyhow, num, optional rand, optional serde, strum, thiserror, and optional tracing