Xuanwo commented on code in PR #6970: URL: https://github.com/apache/opendal/pull/6970#discussion_r2610148575
########## core/src/lib.rs: ########## @@ -24,6 +24,29 @@ pub use opendal_core::*; +#[cfg(feature = "services-aliyun-drive")] +extern crate opendal_service_aliyun_drive; +#[cfg(feature = "services-azblob")] +extern crate opendal_service_azblob; +#[cfg(feature = "services-azdls")] +extern crate opendal_service_azdls; +#[cfg(feature = "services-azfile")] +extern crate opendal_service_azfile; +#[cfg(feature = "services-fs")] +extern crate opendal_service_fs; +#[cfg(feature = "services-ghac")] +extern crate opendal_service_ghac; +#[cfg(feature = "services-hdfs-native")] +extern crate opendal_service_hdfs_native; +#[cfg(feature = "services-moka")] +extern crate opendal_service_moka; +#[cfg(feature = "services-mysql")] +extern crate opendal_service_mysql; +#[cfg(feature = "services-s3")] +extern crate opendal_service_s3; +#[cfg(feature = "services-vercel-blob")] +extern crate opendal_service_vercel_blob; + Review Comment: emm, seems `services-fs` have already been registered. Need another over the test failure. ########## core/src/lib.rs: ########## @@ -24,6 +24,29 @@ pub use opendal_core::*; +#[cfg(feature = "services-aliyun-drive")] +extern crate opendal_service_aliyun_drive; +#[cfg(feature = "services-azblob")] +extern crate opendal_service_azblob; +#[cfg(feature = "services-azdls")] +extern crate opendal_service_azdls; +#[cfg(feature = "services-azfile")] +extern crate opendal_service_azfile; +#[cfg(feature = "services-fs")] +extern crate opendal_service_fs; +#[cfg(feature = "services-ghac")] +extern crate opendal_service_ghac; +#[cfg(feature = "services-hdfs-native")] +extern crate opendal_service_hdfs_native; +#[cfg(feature = "services-moka")] +extern crate opendal_service_moka; +#[cfg(feature = "services-mysql")] +extern crate opendal_service_mysql; +#[cfg(feature = "services-s3")] +extern crate opendal_service_s3; +#[cfg(feature = "services-vercel-blob")] +extern crate opendal_service_vercel_blob; + Review Comment: emm, seems `services-fs` have already been registered. Need another look over the test failure. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
