Releases: CosmicHorrorDev/vdf-rs
Releases · CosmicHorrorDev/vdf-rs
keyvalues-serde 0.2.3
keyvalues-parser 0.2.2
keyvalues-parser 0.2.1
Version 0.2.1
The main headline of this update is significantly slimming down our dependency
tree. We now depend solely on pest (and its transitive deps) 🎉
Fix
- Don't overflow the stack when parsing strings containing many escaped chars (#94)
Deps
- Drop
thiserrorfor a manual implementation (#56) - Run
cargo updateandcargo upgrade(#58) - Commit generated parser code instead of generating with
pest_derive(#95) (#96)
Docs
keyvalues-serde 0.2.2
Just a handful of features and bugfixes
Feature
- Expose functions for deserializing with "raw" strings that don't interpret escaped characters (#79)
Fix
- Allow maps where we normally expect structs when serializing (#81)
- Support unit-variant enums as map keys (#67)
Documentation
- Copy licenses into each crate (#75)
Dependencies
- Drop
thiserrorfor a manual implementation (#56)
`keyvalues-serde` v0.2.1 Release
Just a little bugfix release that fixes a panic that's always been around in keyvalues-serde
- Fixes a panic that occurs when attempting to serialize some structures that can't be represented as
Vdf(#49)