We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Object
Like serde_json, it'd be nice to give clients the opportunity to make maps sorted or preserve order
serde_json
Unlike serde_json, my intention is that HashMap will be the default
HashMap
object_sorted
BTreeMap
object_order_preserved
LinkedHashMap
The text was updated successfully, but these errors were encountered:
feat(Value): Control key order
ed9d511
Fixes cobalt-org#159
7ff0fcd
chore: Release 0.14.0
049092f
Features API * **Value:** Control key order ([7ff0fcd](7ff0fcd), closes [#159](#159)) Users * **errors:** * Provide context on compile errors ([c17df1f](c17df1f)) * Report context during render ([73e26cf](73e26cf), closes [#105](#105)) * **filters:** Implement basic `compact` support ([c0eadd5](c0eadd5)) Breaking Changes API * Reduce string cloning ([3d93928](3d93928) Users * **value:** Improve value coercion practices ([ebb4f40](ebb4f40), closes [#99](#99) Performance * Reduce string cloning ([3d93928](3d93928) Bug Fixes API * Remove warning when no-default-features ([8c43de8](8c43de8)) Users * **filters:** date_in_tz can't parse cobalt date ([1dae527](1dae527)) * **value:** Improve value coercion practices ([ebb4f40](ebb4f40), closes [#99](#99)
epage
No branches or pull requests
Like
serde_json
, it'd be nice to give clients the opportunity to make maps sorted or preserve orderUnlike
serde_json
, my intention is thatHashMap
will be the defaultobject_sorted
will enableBTreeMap
object_order_preserved
will enableLinkedHashMap
The text was updated successfully, but these errors were encountered: