Skip to content

Commit

Permalink
chore: update client version
Browse files Browse the repository at this point in the history
Signed-off-by: Gaius <gaius.qi@gmail.com>
  • Loading branch information
gaius-qi committed Jul 26, 2024
1 parent 29ab308 commit 5e9b13e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client-rs
Submodule client-rs updated 38 files
+573 −40 Cargo.lock
+24 −13 Cargo.toml
+5 −0 README.md
+1 −0 dragonfly-client-backend/Cargo.toml
+18 −12 dragonfly-client-backend/src/http.rs
+80 −1 dragonfly-client-backend/src/lib.rs
+583 −0 dragonfly-client-backend/src/object_storage.rs
+2 −0 dragonfly-client-config/Cargo.toml
+22 −20 dragonfly-client-config/src/dfdaemon.rs
+1 −0 dragonfly-client-core/Cargo.toml
+2 −2 dragonfly-client-core/src/error/errors.rs
+20 −0 dragonfly-client-core/src/error/mod.rs
+41 −0 dragonfly-client-storage/src/content.rs
+13 −1 dragonfly-client-storage/src/lib.rs
+15 −0 dragonfly-client-storage/src/metadata.rs
+7 −0 dragonfly-client-util/src/http/mod.rs
+7 −2 dragonfly-client/Cargo.toml
+400 −3 dragonfly-client/src/bin/dfcache/export.rs
+142 −27 dragonfly-client/src/bin/dfcache/import.rs
+13 −0 dragonfly-client/src/bin/dfcache/main.rs
+170 −3 dragonfly-client/src/bin/dfcache/remove.rs
+234 −3 dragonfly-client/src/bin/dfcache/stat.rs
+1 −7 dragonfly-client/src/bin/dfdaemon/main.rs
+517 −195 dragonfly-client/src/bin/dfget/main.rs
+128 −16 dragonfly-client/src/gc/mod.rs
+228 −29 dragonfly-client/src/grpc/dfdaemon_download.rs
+229 −29 dragonfly-client/src/grpc/dfdaemon_upload.rs
+1 −0 dragonfly-client/src/grpc/health.rs
+1 −0 dragonfly-client/src/grpc/manager.rs
+1 −1 dragonfly-client/src/grpc/mod.rs
+4 −0 dragonfly-client/src/grpc/scheduler.rs
+1 −0 dragonfly-client/src/grpc/security.rs
+137 −91 dragonfly-client/src/proxy/mod.rs
+896 −14 dragonfly-client/src/resource/cache_task.rs
+12 −8 dragonfly-client/src/resource/piece.rs
+18 −8 dragonfly-client/src/resource/piece_collector.rs
+82 −122 dragonfly-client/src/resource/task.rs
+1 −1 rust-toolchain.toml

0 comments on commit 5e9b13e

Please sign in to comment.