diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-06-18 00:46:20 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-06-18 00:46:20 +0800 |
| commit | 330e5ed096cfde3eb6217d4364ee62b92c97c826 (patch) | |
| tree | f9aa4c8106b193160de272784d85392efcd965ac /Cargo.lock | |
| parent | 346eefc2ccfc06a133dafaa4fb86f1e21599179d (diff) | |
feat(rola-bucket): add bucket transfer protocol and error handling
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 33 |
1 files changed, 33 insertions, 0 deletions
@@ -32,6 +32,7 @@ version = "0.1.0" dependencies = [ "shared_functions", "shared_macros", + "thiserror", ] [[package]] @@ -94,12 +95,44 @@ dependencies = [ ] [[package]] +name = "thiserror" +version = "2.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "2.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] name = "tokio" version = "1.52.3" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe" dependencies = [ "pin-project-lite", + "tokio-macros", +] + +[[package]] +name = "tokio-macros" +version = "2.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "385a6cb71ab9ab790c5fe8d67f1645e6c450a7ce006a33de03daa956cf70a496" +dependencies = [ + "proc-macro2", + "quote", + "syn", ] [[package]] |
