diff options
author | Vika <vika@fireburn.ru> | 2024-11-13 06:41:45 +0300 |
---|---|---|
committer | Vika <vika@fireburn.ru> | 2024-11-13 06:41:45 +0300 |
commit | 42506c91065cd69bd03ce68715662dd898e2181f (patch) | |
tree | b22dca97eedcd15ec957cd18f36c62a865397115 /Cargo.lock | |
parent | 3d40cca255d462cc190a602f7fb16c1f4ade821d (diff) | |
download | kittybox-42506c91065cd69bd03ce68715662dd898e2181f.tar.zst |
Wait, is this my first self-contained crate? Not bad. I like this. Maybe I'll go publish it to crates.io? Change-Id: I340d0839746ff1cfbcc4c82c230ae2adff2a92f7
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 68 |
1 files changed, 64 insertions, 4 deletions
diff --git a/Cargo.lock b/Cargo.lock index 05f96dd..c9f8ac2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -250,6 +250,28 @@ dependencies = [ ] [[package]] +name = "async-stream" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476" +dependencies = [ + "async-stream-impl", + "futures-core", + "pin-project-lite", +] + +[[package]] +name = "async-stream-impl" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.72", +] + +[[package]] name = "async-trait" version = "0.1.81" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -4126,6 +4148,19 @@ dependencies = [ ] [[package]] +name = "tokio-test" +version = "0.4.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2468baabc3311435b55dd935f702f42cd1b8abb7e754fb7dfb16bd36aa88f9f7" +dependencies = [ + "async-stream", + "bytes", + "futures-core", + "tokio", + "tokio-stream", +] + +[[package]] name = "tokio-util" version = "0.7.11" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -4174,15 +4209,40 @@ dependencies = [ [[package]] name = "tower-layer" -version = "0.3.2" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0" +checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" [[package]] name = "tower-service" -version = "0.3.2" +version = "0.3.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" +checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" + +[[package]] +name = "tower-test" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4546773ffeab9e4ea02b8872faa49bb616a80a7da66afc2f32688943f97efa7" +dependencies = [ + "futures-util", + "pin-project", + "tokio", + "tokio-test", + "tower-layer", + "tower-service", +] + +[[package]] +name = "tower-watchdog" +version = "1.0.0" +dependencies = [ + "futures", + "tokio", + "tower-layer", + "tower-service", + "tower-test", +] [[package]] name = "tracing" |