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_formis added withoutsomewhere in the dependency tree.default-features = false - std default
-
Use std's default hasher for the internal
IndexMaps thatserde_html_formcreates 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…