aws_smithy_eventstream/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 rust_2018_idioms
15)]
16
17//! AWS Event Stream frame serialization/deserialization implementation.
18
19#[cfg(feature = "derive-arbitrary")]
20pub mod arbitrary;
21mod buf;
22pub mod error;
23pub mod frame;
24pub mod smithy;
25#[cfg(feature = "test-util")]
26pub mod test_util;