ion-binary-rs 0.8.13

Pure Rust parser, encoder and hasher for Amazon's Ion binary format.
Documentation
(
    (a b c)
    (
        a
        b
        c
    )
)

(
    (a+-b)
    ( a +- b )
    ( 'a' '+-' 'b' )
)
(
    (a.b;)
    ( a . b ; )
    ( 'a' '.' 'b' ';')
)

(
    (((((((((((((((((((((())))))))))))))))))))))
    (((((((((((((((((((((())))))))))))))))))))))
)

// The + sign is not parsed as part of the Int, but as an Sexp operator.
(
    (+1)
    ( '+' 1 )
)