Cargo Features

[dependencies]
datetime-string = { version = "0.2.2", default-features = false, features = ["alloc", "alloc_with_serde", "std", "serde-alloc", "serde-std", "std_with_serde", "chrono04", "time03"] }
default = std

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

alloc serde-alloc? std
alloc_with_serde = serde-alloc

Deprecated. Will be removed in 0.3.0.

std default serde-std? = alloc
serde-alloc alloc_with_serde? = alloc

Enables alloc of 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.

serde-std std_with_serde? = std

Enables std of serde

serde:

Provide impls for common standard library types like Vec<T> and HashMap<K, V>.
Requires a dependency on the Rust standard library.

std_with_serde = serde-std

Deprecated. Will be removed in 0.3.0.

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.

chrono04 implicit feature

Enables chrono

chrono:

Date and time library for Rust

serde serde-alloc? serde-std?
time03 implicit feature

Enables time