upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorDanConwayDev <DanConwayDev@protonmail.com>2025-11-21 13:37:57 +0000
committerDanConwayDev <DanConwayDev@protonmail.com>2025-11-21 13:37:57 +0000
commit9a8c551adfada379704d594a6ff3862f13857b8e (patch)
treea902c6b313ab40a8914a34380ee194524dd67604 /Cargo.lock
parent12756fa66e3ec7f9dd24c66598085772829a8063 (diff)
add git http handling
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock42
1 files changed, 42 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index a53f2ec..aa78542 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3,6 +3,12 @@
3version = 3 3version = 3
4 4
5[[package]] 5[[package]]
6name = "adler2"
7version = "2.0.1"
8source = "registry+https://github.com/rust-lang/crates.io-index"
9checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa"
10
11[[package]]
6name = "aead" 12name = "aead"
7version = "0.5.2" 13version = "0.5.2"
8source = "registry+https://github.com/rust-lang/crates.io-index" 14source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -418,6 +424,15 @@ dependencies = [
418] 424]
419 425
420[[package]] 426[[package]]
427name = "crc32fast"
428version = "1.5.0"
429source = "registry+https://github.com/rust-lang/crates.io-index"
430checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511"
431dependencies = [
432 "cfg-if",
433]
434
435[[package]]
421name = "crypto-common" 436name = "crypto-common"
422version = "0.1.6" 437version = "0.1.6"
423source = "registry+https://github.com/rust-lang/crates.io-index" 438source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -506,6 +521,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
506checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127" 521checksum = "52051878f80a721bb68ebfbc930e07b65ba72f2da88968ea5c06fd6ca3d3a127"
507 522
508[[package]] 523[[package]]
524name = "flate2"
525version = "1.1.5"
526source = "registry+https://github.com/rust-lang/crates.io-index"
527checksum = "bfe33edd8e85a12a67454e37f8c75e730830d83e313556ab9ebf9ee7fbeb3bfb"
528dependencies = [
529 "crc32fast",
530 "miniz_oxide",
531]
532
533[[package]]
509name = "fnv" 534name = "fnv"
510version = "1.0.7" 535version = "1.0.7"
511source = "registry+https://github.com/rust-lang/crates.io-index" 536source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1169,6 +1194,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1169checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" 1194checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
1170 1195
1171[[package]] 1196[[package]]
1197name = "miniz_oxide"
1198version = "0.8.9"
1199source = "registry+https://github.com/rust-lang/crates.io-index"
1200checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316"
1201dependencies = [
1202 "adler2",
1203 "simd-adler32",
1204]
1205
1206[[package]]
1172name = "mio" 1207name = "mio"
1173version = "1.1.0" 1208version = "1.1.0"
1174source = "registry+https://github.com/rust-lang/crates.io-index" 1209source = "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]]
2025name = "simd-adler32"
2026version = "0.3.7"
2027source = "registry+https://github.com/rust-lang/crates.io-index"
2028checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
2029
2030[[package]]
1989name = "slab" 2031name = "slab"
1990version = "0.4.11" 2032version = "0.4.11"
1991source = "registry+https://github.com/rust-lang/crates.io-index" 2033source = "registry+https://github.com/rust-lang/crates.io-index"