pub const VERSION: &str = env!("CARGO_PKG_VERSION");
pub mod any;
pub mod category;
pub mod error;
pub mod exposure;
pub mod failure;
pub mod frame;
pub mod handler;
pub mod remote;
pub mod trace;
pub mod traits;
#[cfg(test)]
pub(crate) mod test_support;
#[cfg(any(feature = "anyhow", feature = "eyre"))]
pub use any::AnyError;
pub use any::render_chain;
pub use category::Category;
pub use error::{DecodeError, EncodeError};
pub use exposure::Exposure;
pub use failure::ServiceFailure;
pub use frame::Frame;
pub use handler::{AerroHandler, Handler};
pub use remote::RemoteError;
pub use trace::TraceContext;
pub use traits::Aerro;
#[cfg(feature = "macro")]
pub use aerro_macros::{Aerro, AerroHandler};
#[cfg(feature = "compat-json")]
pub mod compat_json;
pub mod ext;
pub mod tower;
pub mod wire;
pub use ext::{ResultIntoStatusExt, StatusIntoResultExt};
pub use traits::{IntoStatus, TryFromStatus};
pub use wire::decode::decode;
pub use wire::encode::{EncodeOptions, encode};
#[cfg(test)]
mod tests {
#[test]
fn exposes_crate_version() {
assert_eq!(crate::VERSION, env!("CARGO_PKG_VERSION"));
}
}