#![cfg_attr(not(feature = "std"), no_std)]
#![forbid(unsafe_code)]
#![warn(missing_docs)]
#[cfg(feature = "alloc")]
extern crate alloc;
pub mod component_tags;
pub mod components;
pub mod error;
pub mod ior;
pub mod profile_tags;
pub mod stringified;
pub mod tagged_profile;
pub mod url;
pub use component_tags::ComponentId;
pub use components::{
AlternateIiopAddress, CodeSetComponent, CodeSetComponentInfo, OrbType, Ssl,
StreamFormatVersion, StructuredComponent, TaggedComponent, TlsSecTrans,
};
pub use error::{IorError, IorResult};
pub use ior::Ior;
pub use profile_tags::ProfileId;
pub use stringified::{STRINGIFIED_IOR_PREFIX, from_stringified, to_stringified};
pub use tagged_profile::TaggedProfile;
pub use url::{CorbalocAddress, CorbanameAddress, parse_corbaloc, parse_corbaname};