This is an automated email from the ASF dual-hosted git repository. xuanwo pushed a commit to branch xuanwo/yandex-doc-test in repository https://gitbox.apache.org/repos/asf/opendal.git
commit b7cc46596218b81caebfece8c5c16846f6730c41 Author: Xuanwo <[email protected]> AuthorDate: Fri Dec 19 00:52:39 2025 +0800 Fix tests --- core/services/yandex-disk/Cargo.toml | 2 +- core/services/yandex-disk/src/docs.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/services/yandex-disk/Cargo.toml b/core/services/yandex-disk/Cargo.toml index 727635efc..272e4758a 100644 --- a/core/services/yandex-disk/Cargo.toml +++ b/core/services/yandex-disk/Cargo.toml @@ -42,4 +42,4 @@ serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true } [dev-dependencies] -tokio = { workspace = true } +tokio = { workspace = true, features = ["macros", "rt-multi-thread"] } diff --git a/core/services/yandex-disk/src/docs.md b/core/services/yandex-disk/src/docs.md index 8a9670a4e..dda8b4320 100644 --- a/core/services/yandex-disk/src/docs.md +++ b/core/services/yandex-disk/src/docs.md @@ -24,9 +24,9 @@ You can refer to [`YandexDiskBuilder`]'s docs for more information ### Via Builder ```rust,no_run -use anyhow::Result; -use opendal_core::services::YandexDisk; use opendal_core::Operator; +use opendal_core::Result; +use opendal_service_yandex_disk::YandexDisk; #[tokio::main] async fn main() -> Result<()> {
