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
14
15
16
// Biblioteca principal do RustDriveSync

pub mod cli;
pub mod config;
pub mod core;
pub mod error;
pub mod google_drive;
pub mod logging;
pub mod storage;
pub mod sync;
pub mod watcher;

// Re-exports públicos
pub use config::Config;
pub use error::{Result, RustDriveSyncError};
pub use storage::StorageBackend;