Cargo Features

[dependencies]
serde_html_form = { version = "0.4.0", default-features = false, features = ["std", "ser", "de"] }
default = de, ser, std

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

std default

Use std's default hasher for the internal IndexMaps that serde_html_form creates to buffer inputs in some cases.

Currently, building without this feature is not supported.

ser default

Enable serialization support.

Enables itoa

Fast integer serialization

and ryu

Fast and better-looking float serialization

Affects serde_html_form::ser

de default

Enable deserialization support.

Enables indexmap

Used for internal buffering during deserialization

Affects serde_html_form::de