rustdrivesync 1.1.1

Production-ready CLI tool for one-way file synchronization with Google Drive. Features: dependency injection, rate limiting, retry with backoff, parallel uploads, and comprehensive documentation.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Módulos do core engine
pub mod hasher;
pub mod queue;
pub mod retry;
pub mod scanner;
pub mod state;
pub mod sync_engine;

// Re-exports
pub use hasher::compute_file_hash;
pub use retry::{retry_with_backoff, RetryConfig};
pub use scanner::FileScanner;