hocon-parser 1.7.0

Full Lightbend HOCON specification-compliant parser for Rust
Documentation
{  // These are some integers
    "ints" : { # we can comment them with # too
        "fortyTwo" : 42, ## double-# !
        "fortyTwoAgain" : 42 # { }
    },
######## COMMENT COMMENT COMMENT
/// I COMMENT YOU
    "floats" : {
        "fortyTwoPointOne" : 42.1,
        "fortyTwoPointOneAgain" : 42.1
        // I CAN HAS COMMENT
    },

    "strings" : {
        "abcd" : // I got yr comment right here
  "abcd",
        "abcdAgain" : "abcd",
        "a" : "a",
        "b" : "b",
        "c" : "c",
        "d" : "d",
        "concatenated" # more to say?
: "null bar 42 baz true 3.14 hi"
    },

    "arrays" : {
        "empty" : [],
        "1" : [ 1 ],
        "12" : [1, 2],
        "123" : [1, 2, 3],
        "ofString" : [ "a", "b", "c" ]
    },

    "booleans" : {
        "true" : true,
        "trueAgain" : true,
        "false" : false,
        "falseAgain" : false
    },

    "nulls" : {
        "null" : null,
        "nullAgain" : null
    }
}