cobalt_async/lib.rs
1//! # The Cobalt Async wrapper library
2//!
3//! This library provides a collection of helpful functions for working with async Rust.
4//!
5//! * [Changelog](https://github.com/harrison-ai/cobalt-async/blob/main/CHANGELOG.md)
6//!
7//! ### About harrison.ai
8//!
9//! This crate is maintained by the Data Engineering team at [harrison.ai](https://harrison.ai).
10//!
11//! At [harrison.ai](https://harrison.ai) our mission is to create AI-as-a-medical-device solutions through
12//! ventures and ultimately improve the standard of healthcare for 1 million lives every day.
13//!
14//!
15#![cfg_attr(docsrs, feature(doc_cfg))]
16#[cfg(feature = "checksum")]
17#[cfg_attr(docsrs, doc(cfg(feature = "checksum")))]
18pub mod checksum;
19mod chunker;
20pub mod counter;
21mod try_finally;
22
23pub use chunker::{apply_chunker, try_apply_chunker, ChunkResult};
24pub use try_finally::try_finally;