diff options
| author | DanConwayDev <DanConwayDev@protonmail.com> | 2025-11-21 13:37:57 +0000 |
|---|---|---|
| committer | DanConwayDev <DanConwayDev@protonmail.com> | 2025-11-21 13:37:57 +0000 |
| commit | 9a8c551adfada379704d594a6ff3862f13857b8e (patch) | |
| tree | a902c6b313ab40a8914a34380ee194524dd67604 /Cargo.lock | |
| parent | 12756fa66e3ec7f9dd24c66598085772829a8063 (diff) | |
add git http handling
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 42 |
1 files changed, 42 insertions, 0 deletions
| @@ -3,6 +3,12 @@ | |||
| 3 | version = 3 | 3 | version = 3 |
| 4 | 4 | ||
| 5 | [[package]] | 5 | [[package]] |
| 6 | name = "adler2" | ||
| 7 | version = "2.0.1" | ||
| 8 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 9 | checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" | ||
| 10 | |||
| 11 | [[package]] | ||
| 6 | name = "aead" | 12 | name = "aead" |
| 7 | version = "0.5.2" | 13 | version = "0.5.2" |
| 8 | source = "registry+https://github.com/rust-lang/crates.io-index" | 14 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -418,6 +424,15 @@ dependencies = [ | |||
| 418 | ] | 424 | ] |
| 419 | 425 | ||
| 420 | [[package]] | 426 | [[package]] |
| 427 | name = "crc32fast" | ||
| 428 | version = "1.5.0" | ||
| 429 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 430 | checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" | ||
| 431 | dependencies = [ | ||
| 432 | "cfg-if", | ||
| 433 | ] | ||
| 434 | |||
| 435 | [[package]] | ||
| 421 | name = "crypto-common" | 436 | name = "crypto-common" |
| 422 | version = "0.1.6" | 437 | version = "0.1.6" |
| 423 | source = "registry+https://github.com/rust-lang/crates.io-index" | 438 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -506,6 +521,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 506 | checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127" | 521 | checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127" |
| 507 | 522 | ||
| 508 | [[package]] | 523 | [[package]] |
| 524 | name = "flate2" | ||
| 525 | version = "1.1.5" | ||
| 526 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 527 | checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb" | ||
| 528 | dependencies = [ | ||
| 529 | "crc32fast", | ||
| 530 | "miniz_oxide", | ||
| 531 | ] | ||
| 532 | |||
| 533 | [[package]] | ||
| 509 | name = "fnv" | 534 | name = "fnv" |
| 510 | version = "1.0.7" | 535 | version = "1.0.7" |
| 511 | source = "registry+https://github.com/rust-lang/crates.io-index" | 536 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -1169,6 +1194,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 1169 | checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" | 1194 | checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" |
| 1170 | 1195 | ||
| 1171 | [[package]] | 1196 | [[package]] |
| 1197 | name = "miniz_oxide" | ||
| 1198 | version = "0.8.9" | ||
| 1199 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 1200 | checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" | ||
| 1201 | dependencies = [ | ||
| 1202 | "adler2", | ||
| 1203 | "simd-adler32", | ||
| 1204 | ] | ||
| 1205 | |||
| 1206 | [[package]] | ||
| 1172 | name = "mio" | 1207 | name = "mio" |
| 1173 | version = "1.1.0" | 1208 | version = "1.1.0" |
| 1174 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1209 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -1209,6 +1244,7 @@ dependencies = [ | |||
| 1209 | "anyhow", | 1244 | "anyhow", |
| 1210 | "base64 0.22.1", | 1245 | "base64 0.22.1", |
| 1211 | "dotenvy", | 1246 | "dotenvy", |
| 1247 | "flate2", | ||
| 1212 | "futures-util", | 1248 | "futures-util", |
| 1213 | "grasp-audit", | 1249 | "grasp-audit", |
| 1214 | "http-body-util", | 1250 | "http-body-util", |
| @@ -1986,6 +2022,12 @@ dependencies = [ | |||
| 1986 | ] | 2022 | ] |
| 1987 | 2023 | ||
| 1988 | [[package]] | 2024 | [[package]] |
| 2025 | name = "simd-adler32" | ||
| 2026 | version = "0.3.7" | ||
| 2027 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 2028 | checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe" | ||
| 2029 | |||
| 2030 | [[package]] | ||
| 1989 | name = "slab" | 2031 | name = "slab" |
| 1990 | version = "0.4.11" | 2032 | version = "0.4.11" |
| 1991 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2033 | source = "registry+https://github.com/rust-lang/crates.io-index" |