ion-binary-rs 0.8.13

Pure Rust parser, encoder and hasher for Amazon's Ion binary format.
Documentation
// Concatenated long strings with comments between literals
[
    '''foobar''',
    '''foo'''
    '''bar''',
    '''foo'''

    '''bar''',
    '''foo''' // This comment does not prevent concatenation.
    '''bar''',
    '''foo''' /* This comment does not prevent concatenation. */ '''bar''',
    '''foo'''
    // This comment does not prevent concatenation.
    '''bar''',
    '''foo'''
    /* This comment does not prevent concatenation. */
    '''bar''',
    '''foo''' // This comment
              /* does not prevent concatenation
               */'''bar''',
]