typeshare/
lib.rs

1//! Types and functions for code that defines and/or uses `#[typeshare]`
2//! types.
3
4pub use typeshare_annotation::typeshare;
5
6mod integer;
7pub use integer::{usize_from_u53_saturated, I54, U53};
8
9// TODO: Expose and use this module's functionality.
10#[allow(dead_code)]
11mod json_date;