Skip to content

Commit ee6461a

Browse files
authored
fix: remove reference to old crate name. (#8)
* fix: remove reference to old crate name. * fix: make `GoogleError` public.
1 parent b5f7f78 commit ee6461a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/lib.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
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;
4444
use crate::backend::StorageBackend;
4545
use crate::backend::azure::AzureBlobStorageBackend;
4646
use crate::backend::generic::GenericStorageBackend;
47-
use crate::backend::google::GoogleError;
4847
use crate::backend::google::GoogleStorageBackend;
4948
use crate::backend::s3::S3StorageBackend;
5049
use crate::streams::TransferStream;
@@ -62,6 +61,7 @@ mod streams;
6261
mod transfer;
6362

6463
pub use backend::azure::AzureError;
64+
pub use backend::google::GoogleError;
6565
pub use backend::s3::S3Error;
6666
pub use config::*;
6767
pub use generator::*;

0 commit comments

Comments
 (0)