Skip to content

Commit aab48de

Browse files
committed
Update Cargo lockfiles for new bitreq async dependencies
1 parent 3563270 commit aab48de

File tree

2 files changed

+82
-0
lines changed

2 files changed

+82
-0
lines changed

Cargo-minimal.lock

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,12 @@ version = "1.5.0"
184184
source = "registry+https://github.com/rust-lang/crates.io-index"
185185
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
186186

187+
[[package]]
188+
name = "bytes"
189+
version = "1.11.0"
190+
source = "registry+https://github.com/rust-lang/crates.io-index"
191+
checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
192+
187193
[[package]]
188194
name = "bzip2"
189195
version = "0.4.4"
@@ -373,6 +379,12 @@ version = "0.32.3"
373379
source = "registry+https://github.com/rust-lang/crates.io-index"
374380
checksum = "e629b9b98ef3dd8afe6ca2bd0f89306cec16d43d907889945bc5d6687f2f13c7"
375381

382+
[[package]]
383+
name = "hermit-abi"
384+
version = "0.3.9"
385+
source = "registry+https://github.com/rust-lang/crates.io-index"
386+
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
387+
376388
[[package]]
377389
name = "hex-conservative"
378390
version = "0.2.1"
@@ -526,6 +538,18 @@ dependencies = [
526538
"adler2",
527539
]
528540

541+
[[package]]
542+
name = "mio"
543+
version = "1.0.2"
544+
source = "registry+https://github.com/rust-lang/crates.io-index"
545+
checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
546+
dependencies = [
547+
"hermit-abi",
548+
"libc",
549+
"wasi",
550+
"windows-sys 0.52.0",
551+
]
552+
529553
[[package]]
530554
name = "num-traits"
531555
version = "0.2.19"
@@ -798,6 +822,16 @@ version = "1.3.0"
798822
source = "registry+https://github.com/rust-lang/crates.io-index"
799823
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
800824

825+
[[package]]
826+
name = "socket2"
827+
version = "0.5.8"
828+
source = "registry+https://github.com/rust-lang/crates.io-index"
829+
checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
830+
dependencies = [
831+
"libc",
832+
"windows-sys 0.52.0",
833+
]
834+
801835
[[package]]
802836
name = "socks"
803837
version = "0.3.4"
@@ -869,7 +903,24 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
869903
checksum = "2209a14885b74764cce87ffa777ffa1b8ce81a3f3166c6f886b83337fe7e077f"
870904
dependencies = [
871905
"backtrace",
906+
"bytes",
907+
"libc",
908+
"mio",
872909
"pin-project-lite",
910+
"socket2",
911+
"tokio-macros",
912+
"windows-sys 0.52.0",
913+
]
914+
915+
[[package]]
916+
name = "tokio-macros"
917+
version = "2.4.0"
918+
source = "registry+https://github.com/rust-lang/crates.io-index"
919+
checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
920+
dependencies = [
921+
"proc-macro2",
922+
"quote",
923+
"syn",
873924
]
874925

875926
[[package]]

Cargo-recent.lock

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -184,6 +184,12 @@ version = "1.5.0"
184184
source = "registry+https://github.com/rust-lang/crates.io-index"
185185
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
186186

187+
[[package]]
188+
name = "bytes"
189+
version = "1.11.0"
190+
source = "registry+https://github.com/rust-lang/crates.io-index"
191+
checksum = "b35204fbdc0b3f4446b89fc1ac2cf84a8a68971995d0bf2e925ec7cd960f9cb3"
192+
187193
[[package]]
188194
name = "bzip2"
189195
version = "0.4.4"
@@ -827,6 +833,16 @@ version = "0.4.11"
827833
source = "registry+https://github.com/rust-lang/crates.io-index"
828834
checksum = "7a2ae44ef20feb57a68b23d846850f861394c2e02dc425a50098ae8c90267589"
829835

836+
[[package]]
837+
name = "socket2"
838+
version = "0.5.8"
839+
source = "registry+https://github.com/rust-lang/crates.io-index"
840+
checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
841+
dependencies = [
842+
"libc",
843+
"windows-sys 0.52.0",
844+
]
845+
830846
[[package]]
831847
name = "socks"
832848
version = "0.3.4"
@@ -898,11 +914,26 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
898914
checksum = "0cc3a2344dafbe23a245241fe8b09735b521110d30fcefbbd5feb1797ca35d17"
899915
dependencies = [
900916
"backtrace",
917+
"bytes",
901918
"io-uring",
902919
"libc",
903920
"mio",
904921
"pin-project-lite",
905922
"slab",
923+
"socket2",
924+
"tokio-macros",
925+
"windows-sys 0.52.0",
926+
]
927+
928+
[[package]]
929+
name = "tokio-macros"
930+
version = "2.5.0"
931+
source = "registry+https://github.com/rust-lang/crates.io-index"
932+
checksum = "6e06d43f1345a3bcd39f6a56dbb7dcab2ba47e68e8ac134855e7e2bdbaf8cab8"
933+
dependencies = [
934+
"proc-macro2",
935+
"quote",
936+
"syn",
906937
]
907938

908939
[[package]]

0 commit comments

Comments
 (0)