Skip to content

Releases: serde-rs/json

v1.0.67

28 Aug 18:38
v1.0.67
f6bbab4
Compare
Choose a tag to compare
  • Fix inconsistency of deserialization of unknown fields in a struct variant from bytes vs from Value (#795)

v1.0.66

29 Jul 21:43
v1.0.66
6346bb3
Compare
Choose a tag to compare
  • Preserve exponent signifier and unary plus in exponent of arbitrary_precision numbers (#786, thanks @ruifengx)

v1.0.65

28 Jul 21:20
v1.0.65
c9193d4
Compare
Choose a tag to compare
  • Documentation improvements

v1.0.64

28 Feb 05:00
v1.0.64
d0d8078
Compare
Choose a tag to compare
  • Fix deserialization panic on deserializing RawValue from a slice containing non-utf8 bytes (#755)

v1.0.63

25 Feb 17:42
v1.0.63
d400899
Compare
Choose a tag to compare

v1.0.62

05 Feb 22:06
v1.0.62
8d78020
Compare
Choose a tag to compare

v1.0.61

28 Dec 19:36
v1.0.61
613d66e
Compare
Choose a tag to compare
  • Add impl From<Number> for Value (#737, thanks @imp)

v1.0.60

02 Dec 21:22
v1.0.60
6a4cd8d
Compare
Choose a tag to compare
  • Add impl FromIterator<(impl Into<String>, impl Into<Value>)> for Value, which collects a Value::Object (#733, thanks @matklad)

v1.0.59

02 Dec 21:21
v1.0.59
64bb396
Compare
Choose a tag to compare
  • In arbitrary_precision mode, return None from serde_json::Number::as_f64 if the JSON number is larger than the maximum possible f64

v1.0.58

30 Sep 21:21
v1.0.58
d6eae8f
Compare
Choose a tag to compare
  • Add serde_json::Map::remove_entry, matching the equivalent API on BTreeMap