sendmer 0.4.4

A cli tool to send directories over the network, with NAT hole punching
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Core library: 负责实现发送/接收逻辑及进度/类型定义。
//!
//! 该模块导出内部子模块:`send`, `receive`, `progress`, `types`,
//! 并提供给上层 crate 使用的库 API(见 `src/lib.rs` 的 pub re-export)。
pub mod args;
pub mod cli_helper;
mod endpoint;
pub mod events;
pub mod options;
mod progress;
pub mod receiver;
pub mod results;
pub mod sender;
mod storage;
pub mod types;