Cargo Features

[dependencies]
refined = { version = "0.3.1", default-features = false, features = ["std", "alloc", "full", "implication", "regex", "serde", "arithmetic", "optimized"] }
default = serde, std

These default features are set whenever refined is added without default-features = false somewhere in the dependency tree.

std default full? = alloc

Enables std of optional regex, optional serde, and thiserror

regex:

ECOSYSTEM FEATURES

The 'std' feature permits the regex crate to use the standard library. This is intended to support future use cases where the regex crate may be able to compile without std, and instead just rely on 'core' and 'alloc' (for example). Currently, this isn't supported, and removing the 'std' feature will prevent regex from compiling.

alloc regex? std

Enables thiserror and alloc of optional serde

serde:

Provide impls for types in the Rust core allocation and collections library including String, Box<T>, Vec<T>, and Cow<T>. This is a subset of std but may be enabled without depending on all of std.

Affects refined::string, refined::ErrorMessage

full = arithmetic, regex, serde, std
implication arithmetic?

Affects refined::implication

regex full? = alloc

Enables regex

serde default full?

Enables serde

arithmetic full? = implication
optimized