A Rust implementation of B3 (Better Binary Buffers).
This library is in very early stages of development! There is no guarantee
of API stability until we reach v1.0.0
.
Parts of this library are heavily based on the original Python B3 implementation.
Currently, you have to construct b3_rs::item::Item
instances manually.
There will soon be impl From<T> for Item
implementations to make this
easier, but those aren't here yet.
The following item types are currently unimplemented:
Decimal
(type 10)Sched
(type 13)Complex
(type 16)The error b3_rs::Error::UnimplementedB3TypeError
will be returned when a
message contains any of these types.
The code in this project is licensed under the MIT license. See the LICENSE
file in the root of the repository for more information.