1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*
 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
 * SPDX-License-Identifier: Apache-2.0
 */

//! CBOR abstractions for Smithy.

/* Automatically managed default lints */
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
/* End of automatically managed default lints */

pub mod data;
pub mod decode;
pub mod encode;

pub use decode::Decoder;
pub use encode::Encoder;