Move iroh_driver and the relay binary out of distribution into a dedicated crates/iroh-driver (lib re-exports IrohDriver; relay bin renamed). Remove the node crate and the single-gpu-inference example; drop the docker/datastream demo. Slim pipeline-parallel vastai. Signed-off-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
15 lines
293 B
Rust
15 lines
293 B
Rust
pub mod cache;
|
|
pub mod crypto;
|
|
pub mod directory_actor;
|
|
pub mod messages;
|
|
pub mod node;
|
|
pub mod node_metadata;
|
|
pub mod node_metadata_actor;
|
|
pub mod peer_auth;
|
|
pub mod registry;
|
|
pub mod registry_actor;
|
|
pub mod snapshot;
|
|
pub mod swim;
|
|
pub mod telemetry;
|
|
pub mod transport_bridge;
|
|
pub mod types;
|