Cargo Features
[dependencies]
stof = { version = "0.1.4", default-features = false, features = ["json", "toml", "yaml", "xml", "urlencoded", "js"] }
- default = json, toml, urlencoded, xml, yaml
-
These default features are set whenever
stof
is added without
somewhere in the dependency tree.default-features = false - json default js? urlencoded xml yaml
-
Enables serde_json
Affects
stof::json
… - toml default
-
Enables toml
Affects
stof::toml
… - yaml default = json
-
Enables serde_yaml
Affects
stof::yaml
… - xml default = json
-
Enables quick-xml and serde-xml-rs
Affects
stof::xml
… - urlencoded default = json
-
Enables urlencoding
Affects
stof::urlencoded
… - js = json
-
Enables js-sys, serde-wasm-bindgen, and wasm-bindgen
Affects
doc::SDoc.libfuncs
,stof::js
…