rcodec/
lib.rs

1//
2// Copyright (c) 2015-2019 Plausible Labs Cooperative, Inc.
3// All rights reserved.
4//
5// This API is based on the design of Michael Pilquist and Paul Chiusano's
6// Scala scodec library: https://github.com/scodec/scodec/
7//
8
9// TODO: Restore benchmark support
10// // The following allows for benchmark tests.
11// #![feature(test)]
12
13// The following is necessary to make exported macros visible.
14#[macro_use]
15pub mod macros;
16
17pub mod byte_vector;
18pub mod codec;
19pub mod error;
20
21// TODO: Restore benchmark support
22// // The following is used for benchmark tests.
23// extern crate test;