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
13
// Módulo de sincronização de arquivos

pub mod engine;
pub mod engine_v2;
pub mod scanner;
pub mod state;
pub mod tracker;

// Re-exports públicos (mantém compatibilidade mas usa nova versão)
pub use engine_v2::{SyncEngine, SyncMode, SyncResult, SyncStats};
pub use scanner::{FileScanner, LocalFile};
pub use state::{SyncState, SyncStateManager};
pub use tracker::ChangeTracker;