jasn 0.2.0

A Rust library for parsing and formatting JASN (Just Another Serialization Notation)
Documentation
/* Example demonstrating comment support */
{
  /* Block comments use slash-star notation */
  name: "JASN",
  
  /* Block comments
     can span multiple lines */
  version: 1,
  
  items: [
    1,  /* trailing comment */
    2,  /* inline block comment */ 3,
  ],
  
  /* Nested structures work */
  config: {
    enabled: true,  /* boolean value */
  },
  
  /* Comments can appear almost anywhere */
  end: "done",  /* even at the end of a line */
}