From d74f56ff3ace1f8f50f012833a0da2f759326107 Mon Sep 17 00:00:00 2001 From: slzhou Date: Thu, 8 Sep 2022 14:21:28 +0800 Subject: [PATCH] fix: specify bstr version for rust --- docs/examples/rust/nativeexample/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/examples/rust/nativeexample/Cargo.toml b/docs/examples/rust/nativeexample/Cargo.toml index 64fd10a3e9..8365fc0c3e 100644 --- a/docs/examples/rust/nativeexample/Cargo.toml +++ b/docs/examples/rust/nativeexample/Cargo.toml @@ -6,5 +6,5 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] libtaos = { version = "0.4.3" } -tokio = { version = "*", features = ["rt", "macros", "rt-multi-thread"] } -bstr = { version = "*" } +tokio = { version = "1", features = ["rt", "macros", "rt-multi-thread"] } +bstr = { version = "0.2" } -- GitLab