regy 0.1.0

Private-by-default desktop agent for the Regy web interface
mod code;
mod identity;
mod limits;
mod service;
mod store;
mod types;

#[allow(unused_imports)]
pub(crate) use code::{
    ClientCredential, PairingCode, RandomSource, SecretGenerationError, SystemRandomSource,
};
#[allow(unused_imports)]
pub(crate) use identity::{SecretBytes, ServerId, ServerIdentity};
#[allow(unused_imports)]
pub(crate) use limits::{AttemptLimiter, ConnectionId, FailureDisposition, RateLimit};
#[allow(unused_imports)]
pub(crate) use service::{
    Clock, IssuedPairingCode, PairingFailure, PairingFailureKind, PairingOutcome, PairingService,
    SystemClock,
};
#[allow(unused_imports)]
pub(crate) use store::{ApprovedClient, ClientId, ClientStore, FileClientStore, PairingStoreError};
#[allow(unused_imports)]
pub(crate) use types::{ClientBinding, SourceIdentity};