aws_smithy_json/
lib.rs

1/*
2 * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3 * SPDX-License-Identifier: Apache-2.0
4 */
5
6/* Automatically managed default lints */
7#![cfg_attr(docsrs, feature(doc_auto_cfg))]
8/* End of automatically managed default lints */
9#![allow(clippy::derive_partial_eq_without_eq)]
10#![warn(
11    // missing_docs,
12    rustdoc::missing_crate_level_docs,
13    unreachable_pub,
14    // Enabling this requires fixing a macro but I don't understand how to do that.
15    // rust_2018_idioms
16)]
17
18//! JSON Abstractions for Smithy
19
20pub mod deserialize;
21mod escape;
22pub mod serialize;