dufs: lock cargo dependencies
authorTianling Shen <[email protected]>
Wed, 23 Jul 2025 06:45:56 +0000 (14:45 +0800)
committerTianling Shen <[email protected]>
Wed, 23 Jul 2025 09:24:02 +0000 (17:24 +0800)
commit1716415018d67a4e0038639a87d7f484d73f89b1
tree93c5f270e830929cb8c225388d284f50bab26c4c
parent5bfd9558f47eda1d85e557a3b193e674124c8dff
dufs: lock cargo dependencies

The new version of tokio is not compatible with musl:

error[E0432]: unresolved import `tokio::net::TcpListener`
  --> src/main.rs:34:13
   |
34 | use tokio::{net::TcpListener, task::JoinHandle};
   |             ^^^^^^^^^^^^^^^^ no `TcpListener` in `net`

error[E0433]: failed to resolve: could not find `UnixListener` in `net`
   --> src/main.rs:156:44
    |
156 |                 let listener = tokio::net::UnixListener::bind(socket_path)
    |                                            ^^^^^^^^^^^^ could not find `UnixListener` in `net`

Signed-off-by: Tianling Shen <[email protected]>
net/dufs/Makefile