Sort dependencies in Cargo.toml files (#18657)

This PR sorts the dependencies in various `Cargo.toml` files after
#18414.

Release Notes:

- N/A
This commit is contained in:
Marshall Bowers 2024-10-02 16:26:48 -04:00 committed by GitHub
parent 9565a90528
commit 6f4385e737
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
11 changed files with 55 additions and 59 deletions

View file

@ -21,11 +21,11 @@ path = "examples/client.rs"
[dependencies]
anyhow.workspace = true
bytes = "1.0"
futures.workspace = true
http_client.workspace = true
serde.workspace = true
smol.workspace = true
http_client.workspace = true
tokio.workspace = true
bytes = "1.0"
reqwest = { workspace = true, features = ["rustls-tls-manual-roots", "stream"] }