regy 0.1.0

Private-by-default desktop agent for the Regy web interface
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
mod lock;
mod process_control;
pub(crate) mod server;
mod supervisor;

#[allow(unused_imports)]
pub(crate) use lock::RuntimeLock;
pub(crate) use process_control::{DaemonReadyWriter, StopOutcome, launch_detached, stop_server};
#[cfg(test)]
pub(crate) use process_control::{MAX_READY_FRAME, decode_ready, open_daemon_log_for_test};
#[cfg(test)]
pub(crate) use supervisor::public_retry_delay_for_test;
#[allow(unused_imports)]
pub(crate) use supervisor::{
    FrontendDeepLink, IrohEndpointStarter, RunningRuntime, RuntimeApplication, RuntimeDependencies,
    RuntimeEvent, RuntimeOptions, RuntimePhase, RuntimeShutdown, RuntimeStatus, RuntimeSupervisor,
    RuntimeTransport,
};