aws_smithy_cbor/
lib.rs

1/*
2 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6//! CBOR abstractions for Smithy.
7
8/* Automatically managed default lints */
9#![cfg_attr(docsrs, feature(doc_auto_cfg))]
10/* End of automatically managed default lints */
11
12pub mod data;
13pub mod decode;
14pub mod encode;
15
16pub use decode::Decoder;
17pub use encode::Encoder;