11//! Cloud storage copy utility.
22//!
3- //! The `cloud` crate offers a simple API for transferring files to and from
4- //! Azure Blob Storage, Amazon S3, and Google Cloud Storage.
3+ //! The `cloud-copy ` crate offers a simple API for transferring files to and
4+ //! from Azure Blob Storage, Amazon S3, and Google Cloud Storage.
55//!
6- //! It exports only a single function named [`copy`] which is responsible for
7- //! copying a source to a destination.
6+ //! It exports a function named [`copy`] which is responsible for copying a
7+ //! source to a destination.
88//!
99//! An optional transfer event stream provided to the [`copy`] function can be
1010//! used to display transfer progress.
@@ -44,7 +44,6 @@ use url::Url;
4444use crate :: backend:: StorageBackend ;
4545use crate :: backend:: azure:: AzureBlobStorageBackend ;
4646use crate :: backend:: generic:: GenericStorageBackend ;
47- use crate :: backend:: google:: GoogleError ;
4847use crate :: backend:: google:: GoogleStorageBackend ;
4948use crate :: backend:: s3:: S3StorageBackend ;
5049use crate :: streams:: TransferStream ;
@@ -62,6 +61,7 @@ mod streams;
6261mod transfer;
6362
6463pub use backend:: azure:: AzureError ;
64+ pub use backend:: google:: GoogleError ;
6565pub use backend:: s3:: S3Error ;
6666pub use config:: * ;
6767pub use generator:: * ;
0 commit comments