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 traits;
9
10pub use error::*;
11pub use traits::*;