GG2002 commented on code in PR #5116:
URL: https://github.com/apache/opendal/pull/5116#discussion_r1766066587


##########
core/Cargo.lock:
##########
@@ -2770,6 +2860,12 @@ version = "2.0.0"
 source = "registry+https://github.com/rust-lang/crates.io-index";
 checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
 
+[[package]]
+name = "futures"
+version = "0.1.31"
+source = "registry+https://github.com/rust-lang/crates.io-index";
+checksum = "3a471a38ef8ed83cd6e40aa59c1ffe17db6855c18e3604d9c4ed8c08ebc28678"

Review Comment:
   It's `futures-util`, `fbthrift-*` used in `rust-nebula` and `bb8` depends on 
`futures` and `futures` depends on `futures-util`. 
[futures-utils/dependencies](https://crates.io/crates/futures-util/0.3.30/dependencies)
 displayed that `futures=0.1.25`.
   
   `cargo tree` is as follows:
   ```
   ├── bb8 v0.8.5
   │   ├── async-trait v0.1.82 (proc-macro) (*)
   │   ├── futures-util v0.3.30
   │   │   ├── futures v0.1.31
   │   │   ├── futures-channel v0.3.30
   │   │   │   ├── futures-core v0.3.30
   │   │   │   └── futures-sink v0.3.30
   ```
   
   Does it need to be removed? I just don't know how to do it:(



-- 
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]

Reply via email to