Skip to content

Releases: serde-rs/json

v1.0.51

04 Apr 23:40
v1.0.51
f77c84d
Compare
Choose a tag to compare
  • Terminate StreamDeserializer after errors instead of repeatedly reparsing the same failed input (#647)
  • Add FusedIterator impls for StreamDeserializer and for Map's various iterators

v1.0.50

28 Mar 18:32
v1.0.50
fd6741f
Compare
Choose a tag to compare

v1.0.49

28 Mar 06:20
v1.0.49
50656bd
Compare
Choose a tag to compare
  • Improve error message when neither "std" nor "alloc" feature is enabled (#643)

v1.0.48

13 Feb 05:40
v1.0.48
ed479b4
Compare
Choose a tag to compare
  • Add serde_json::value::Serializer which produces a Value as output (#621, thanks @sdleffler)

v1.0.47

07 Feb 19:44
v1.0.47
6b5ded9
Compare
Choose a tag to compare
  • Raise serde requirement to 1.0.100+ for the necessary no-std traits (#617, thanks @Xanewok)

v1.0.46

02 Feb 20:48
v1.0.46
39ed887
Compare
Choose a tag to compare
  • Serialize JSON map entries using serialize_entry instead of serialize_key + serialize_value to support transcoding to XML (#614, thanks @jmfiaschi)

v1.0.45

23 Jan 00:10
v1.0.45
a39bcad
Compare
Choose a tag to compare
  • Add no-std support (#606, thanks @Xanewok)

    [dependencies]
    serde_json = { version = "1.0.45", default-features = false, features = ["alloc"] }

v1.0.44

04 Dec 20:28
v1.0.44
1977e69
Compare
Choose a tag to compare
  • Implement IntoDeserializer for serde_json::Value to allow deserializing from types like HashMap<String, Value> (#591)

v1.0.43

04 Dec 10:44
v1.0.43
f7a4da0
Compare
Choose a tag to compare
  • Declare accurate minimum required version of indexmap crate when preserve-order feature is enabled (#590, thanks @nlordell)

v1.0.42

24 Nov 22:31
v1.0.42
f0471e6
Compare
Choose a tag to compare
  • Add impl From<()> for Value which produces Value::Null (#585, thanks @Nilix007)