1
2
3
4
5
6
7
8
//! A collection of types related to the Internet Computer Protocol.
//!
//! If you need support for the serde library, you will need to use the `serde` feature
//! (available by default).

/// Principal related types and traits.
pub mod principal;
pub use principal::{Principal, PrincipalError};