ion-binary-rs 0.8.13

Pure Rust parser, encoder and hasher for Amazon's Ion binary format.
Documentation
// G clef is a 4-byte UTF-8 character
// The UTF-8 encoding is        F0 9D 84 9E
// The UTF-16 surrogate pair is D834 DD1E

(
  "\U0001D11E"
  '''\U0001D11E'''
  "𝄞"
  '''𝄞'''
)

(
  "12345678901234567890\U0001D11E"
  '''12345678901234567890\U0001D11E'''
  "12345678901234567890𝄞"
  '''12345678901234567890𝄞'''
)

(
  '\U0001D11E'
  '𝄞'
)

(
  '12345678901234567890\U0001D11E'
  '12345678901234567890𝄞'
)

(
  {'\U0001D11E':null}
  {'𝄞':null}
  {"\U0001D11E":null}
  {"𝄞":null}
)

(
  {'12345678901234567890\U0001D11E':null}
  {'12345678901234567890𝄞':null}
  {"12345678901234567890\U0001D11E":null}
  {"12345678901234567890𝄞":null}
)