#![cfg_attr(feature = "client", doc = "```no_run")]
#![cfg_attr(not(feature = "client"), doc = "```ignore")]
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
pub const TRANSPORT_VOCABULARY: &str = include_str!("../fixtures/transport-vocabulary.json");
pub mod paths;
pub mod principals;
pub mod protocol;
pub use principals::principal_set;
pub use protocol::{
API_MINOR, API_NAME, API_VERSION, ActiveSession, AuditKind, AuditListParams, AuditListResult,
AuditPruneParams, AuditPruneResult, AuditRecord, AuditSummaryResult, BackendKind, BackendSpec,
BlobFetchParams, BlobFetchResult, BlobGrantParams, BlobListParams, BlobPublishParams,
BlobPublishResult, BlobRepublishParams, BlobRevokeParams, BlobScopeList, BlobUnpublishParams,
ERR_BLOB_WITHDRAWN, ERR_NICKNAME_TAKEN, ERR_NO_SUCH_BLOB, ERR_NO_SUCH_SERVICE, Hello,
InviteParams, InviteResult, MAX_INVITE_USES, OpenSessionParams, OrgJoinParams, OrgJoinResult,
PairParams, PairResult, PeerAddParams, PeerDiagnosticsParams, PeerDiagnosticsResult, PeerInfo,
PeerPath, PeerReachability, PeerRemoveParams, PeerRenameParams, PeerServicesParams,
PeerServicesResult, PresencePeer, ReachabilitySource, RecentPairing, RegisterServiceParams,
RelayInfo, Request, RosterInstallParams, RosterInstallResult, RosterStatus, ScopeInfo,
SelfNetwork, ServiceAllowParams, ServiceInfo, SetAppMetadataParams, SetNicknameParams,
SetRelaysParams, SetRelaysResult, SetRosterUrlParams, StatusResult, StorageInfo, StreamFrame,
UnregisterServiceParams, method_of, one_use,
};
#[cfg(feature = "client")]
pub mod client;
#[cfg(feature = "client")]
pub mod codec;
#[cfg(feature = "client")]
pub mod transport;
#[cfg(feature = "client")]
pub use client::{
ControlClient, ControlRead, ControlWrite, StreamSubscription, connect_control,
connect_control_default, connect_control_io,
};
#[cfg(feature = "service")]
pub mod service;