tidepool_bridge/lib.rs
1//! Bidirectional conversion between Rust types and Tidepool Core values.
2//!
3//! Defines `FromCore` and `ToCore` traits with derive macros for automatic
4//! marshalling across the Haskell-Rust boundary.
5
6pub mod error;
7pub mod impls;
8pub mod json;
9pub mod traits;
10
11pub use error::*;
12pub use traits::*;