diff options
author | Rutger Broekhoff | 2024-01-23 02:15:30 +0100 |
---|---|---|
committer | Rutger Broekhoff | 2024-01-23 02:15:30 +0100 |
commit | 8e8403c7fbf5a0b2c4e0df41bc8b502ce4a79ec1 (patch) | |
tree | 4c73af15076e3f7249841ab0c0be219257eb507f | |
parent | f5ff2803af0e03f57ab3093a9384d91abb9de083 (diff) | |
download | gitolfs3-8e8403c7fbf5a0b2c4e0df41bc8b502ce4a79ec1.tar.gz gitolfs3-8e8403c7fbf5a0b2c4e0df41bc8b502ce4a79ec1.zip |
Remove unused dependencies, fix build
The LFS server had the unused dependency 'aws-creds', which pulled in
the 'openssl' crate which wanted to link to the real thing. This doesn't
work great in Nix when neither OpenSSL nor pkg-config are available at
build time :)
-rw-r--r-- | rs/Cargo.lock | 319 | ||||
-rw-r--r-- | rs/server/Cargo.toml | 3 |
2 files changed, 3 insertions, 319 deletions
diff --git a/rs/Cargo.lock b/rs/Cargo.lock index 5a83471..ed8409a 100644 --- a/rs/Cargo.lock +++ b/rs/Cargo.lock | |||
@@ -18,17 +18,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
18 | checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" | 18 | checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe" |
19 | 19 | ||
20 | [[package]] | 20 | [[package]] |
21 | name = "ahash" | ||
22 | version = "0.7.7" | ||
23 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
24 | checksum = "5a824f2aa7e75a0c98c5a504fceb80649e9c35265d44525b5f94de4771a395cd" | ||
25 | dependencies = [ | ||
26 | "getrandom", | ||
27 | "once_cell", | ||
28 | "version_check", | ||
29 | ] | ||
30 | |||
31 | [[package]] | ||
32 | name = "android-tzdata" | 21 | name = "android-tzdata" |
33 | version = "0.1.1" | 22 | version = "0.1.1" |
34 | source = "registry+https://github.com/rust-lang/crates.io-index" | 23 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -55,20 +44,6 @@ dependencies = [ | |||
55 | ] | 44 | ] |
56 | 45 | ||
57 | [[package]] | 46 | [[package]] |
58 | name = "attohttpc" | ||
59 | version = "0.22.0" | ||
60 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
61 | checksum = "1fcf00bc6d5abb29b5f97e3c61a90b6d3caa12f3faf897d4a3e3607c050a35a7" | ||
62 | dependencies = [ | ||
63 | "http 0.2.11", | ||
64 | "log", | ||
65 | "native-tls", | ||
66 | "serde", | ||
67 | "serde_json", | ||
68 | "url", | ||
69 | ] | ||
70 | |||
71 | [[package]] | ||
72 | name = "autocfg" | 47 | name = "autocfg" |
73 | version = "1.1.0" | 48 | version = "1.1.0" |
74 | source = "registry+https://github.com/rust-lang/crates.io-index" | 49 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -118,23 +93,6 @@ dependencies = [ | |||
118 | ] | 93 | ] |
119 | 94 | ||
120 | [[package]] | 95 | [[package]] |
121 | name = "aws-creds" | ||
122 | version = "0.34.1" | ||
123 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
124 | checksum = "3776743bb68d4ad02ba30ba8f64373f1be4e082fe47651767171ce75bb2f6cf5" | ||
125 | dependencies = [ | ||
126 | "attohttpc", | ||
127 | "dirs", | ||
128 | "log", | ||
129 | "quick-xml", | ||
130 | "rust-ini", | ||
131 | "serde", | ||
132 | "thiserror", | ||
133 | "time", | ||
134 | "url", | ||
135 | ] | ||
136 | |||
137 | [[package]] | ||
138 | name = "aws-http" | 96 | name = "aws-http" |
139 | version = "0.60.2" | 97 | version = "0.60.2" |
140 | source = "registry+https://github.com/rust-lang/crates.io-index" | 98 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -576,12 +534,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
576 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" | 534 | checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" |
577 | 535 | ||
578 | [[package]] | 536 | [[package]] |
579 | name = "bitflags" | ||
580 | version = "2.4.2" | ||
581 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
582 | checksum = "ed570934406eb16438a4e976b1b4500774099c13b8cb96eec99f620f05090ddf" | ||
583 | |||
584 | [[package]] | ||
585 | name = "block-buffer" | 537 | name = "block-buffer" |
586 | version = "0.10.4" | 538 | version = "0.10.4" |
587 | source = "registry+https://github.com/rust-lang/crates.io-index" | 539 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -750,7 +702,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
750 | checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" | 702 | checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4" |
751 | dependencies = [ | 703 | dependencies = [ |
752 | "powerfmt", | 704 | "powerfmt", |
753 | "serde", | ||
754 | ] | 705 | ] |
755 | 706 | ||
756 | [[package]] | 707 | [[package]] |
@@ -765,32 +716,6 @@ dependencies = [ | |||
765 | ] | 716 | ] |
766 | 717 | ||
767 | [[package]] | 718 | [[package]] |
768 | name = "dirs" | ||
769 | version = "4.0.0" | ||
770 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
771 | checksum = "ca3aa72a6f96ea37bbc5aa912f6788242832f75369bdfdadcb0e38423f100059" | ||
772 | dependencies = [ | ||
773 | "dirs-sys", | ||
774 | ] | ||
775 | |||
776 | [[package]] | ||
777 | name = "dirs-sys" | ||
778 | version = "0.3.7" | ||
779 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
780 | checksum = "1b1d1d91c932ef41c0f2663aa8b0ca0342d444d842c06914aa0a7e352d0bada6" | ||
781 | dependencies = [ | ||
782 | "libc", | ||
783 | "redox_users", | ||
784 | "winapi", | ||
785 | ] | ||
786 | |||
787 | [[package]] | ||
788 | name = "dlv-list" | ||
789 | version = "0.3.0" | ||
790 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
791 | checksum = "0688c2a7f92e427f44895cd63841bff7b29f8d7a1648b9e7e07a4a365b2e1257" | ||
792 | |||
793 | [[package]] | ||
794 | name = "ecdsa" | 719 | name = "ecdsa" |
795 | version = "0.14.8" | 720 | version = "0.14.8" |
796 | source = "registry+https://github.com/rust-lang/crates.io-index" | 721 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -835,16 +760,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
835 | checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" | 760 | checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" |
836 | 761 | ||
837 | [[package]] | 762 | [[package]] |
838 | name = "errno" | ||
839 | version = "0.3.8" | ||
840 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
841 | checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245" | ||
842 | dependencies = [ | ||
843 | "libc", | ||
844 | "windows-sys 0.52.0", | ||
845 | ] | ||
846 | |||
847 | [[package]] | ||
848 | name = "fastrand" | 763 | name = "fastrand" |
849 | version = "2.0.1" | 764 | version = "2.0.1" |
850 | source = "registry+https://github.com/rust-lang/crates.io-index" | 765 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -867,21 +782,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
867 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" | 782 | checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" |
868 | 783 | ||
869 | [[package]] | 784 | [[package]] |
870 | name = "foreign-types" | ||
871 | version = "0.3.2" | ||
872 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
873 | checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1" | ||
874 | dependencies = [ | ||
875 | "foreign-types-shared", | ||
876 | ] | ||
877 | |||
878 | [[package]] | ||
879 | name = "foreign-types-shared" | ||
880 | version = "0.1.1" | ||
881 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
882 | checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b" | ||
883 | |||
884 | [[package]] | ||
885 | name = "form_urlencoded" | 785 | name = "form_urlencoded" |
886 | version = "1.2.1" | 786 | version = "1.2.1" |
887 | source = "registry+https://github.com/rust-lang/crates.io-index" | 787 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1015,15 +915,6 @@ dependencies = [ | |||
1015 | 915 | ||
1016 | [[package]] | 916 | [[package]] |
1017 | name = "hashbrown" | 917 | name = "hashbrown" |
1018 | version = "0.12.3" | ||
1019 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1020 | checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" | ||
1021 | dependencies = [ | ||
1022 | "ahash", | ||
1023 | ] | ||
1024 | |||
1025 | [[package]] | ||
1026 | name = "hashbrown" | ||
1027 | version = "0.14.3" | 918 | version = "0.14.3" |
1028 | source = "registry+https://github.com/rust-lang/crates.io-index" | 919 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1029 | checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" | 920 | checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" |
@@ -1240,7 +1131,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1240 | checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" | 1131 | checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" |
1241 | dependencies = [ | 1132 | dependencies = [ |
1242 | "equivalent", | 1133 | "equivalent", |
1243 | "hashbrown 0.14.3", | 1134 | "hashbrown", |
1244 | ] | 1135 | ] |
1245 | 1136 | ||
1246 | [[package]] | 1137 | [[package]] |
@@ -1259,35 +1150,12 @@ dependencies = [ | |||
1259 | ] | 1150 | ] |
1260 | 1151 | ||
1261 | [[package]] | 1152 | [[package]] |
1262 | name = "lazy_static" | ||
1263 | version = "1.4.0" | ||
1264 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1265 | checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" | ||
1266 | |||
1267 | [[package]] | ||
1268 | name = "libc" | 1153 | name = "libc" |
1269 | version = "0.2.152" | 1154 | version = "0.2.152" |
1270 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1155 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1271 | checksum = "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7" | 1156 | checksum = "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7" |
1272 | 1157 | ||
1273 | [[package]] | 1158 | [[package]] |
1274 | name = "libredox" | ||
1275 | version = "0.0.1" | ||
1276 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1277 | checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8" | ||
1278 | dependencies = [ | ||
1279 | "bitflags 2.4.2", | ||
1280 | "libc", | ||
1281 | "redox_syscall", | ||
1282 | ] | ||
1283 | |||
1284 | [[package]] | ||
1285 | name = "linux-raw-sys" | ||
1286 | version = "0.4.13" | ||
1287 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1288 | checksum = "01cda141df6706de531b6c46c3a33ecca755538219bd484262fa09410c13539c" | ||
1289 | |||
1290 | [[package]] | ||
1291 | name = "lock_api" | 1159 | name = "lock_api" |
1292 | version = "0.4.11" | 1160 | version = "0.4.11" |
1293 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1161 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1352,24 +1220,6 @@ dependencies = [ | |||
1352 | ] | 1220 | ] |
1353 | 1221 | ||
1354 | [[package]] | 1222 | [[package]] |
1355 | name = "native-tls" | ||
1356 | version = "0.2.11" | ||
1357 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1358 | checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e" | ||
1359 | dependencies = [ | ||
1360 | "lazy_static", | ||
1361 | "libc", | ||
1362 | "log", | ||
1363 | "openssl", | ||
1364 | "openssl-probe", | ||
1365 | "openssl-sys", | ||
1366 | "schannel", | ||
1367 | "security-framework", | ||
1368 | "security-framework-sys", | ||
1369 | "tempfile", | ||
1370 | ] | ||
1371 | |||
1372 | [[package]] | ||
1373 | name = "num-integer" | 1223 | name = "num-integer" |
1374 | version = "0.1.45" | 1224 | version = "0.1.45" |
1375 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1225 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1414,60 +1264,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1414 | checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" | 1264 | checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" |
1415 | 1265 | ||
1416 | [[package]] | 1266 | [[package]] |
1417 | name = "openssl" | ||
1418 | version = "0.10.62" | ||
1419 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1420 | checksum = "8cde4d2d9200ad5909f8dac647e29482e07c3a35de8a13fce7c9c7747ad9f671" | ||
1421 | dependencies = [ | ||
1422 | "bitflags 2.4.2", | ||
1423 | "cfg-if", | ||
1424 | "foreign-types", | ||
1425 | "libc", | ||
1426 | "once_cell", | ||
1427 | "openssl-macros", | ||
1428 | "openssl-sys", | ||
1429 | ] | ||
1430 | |||
1431 | [[package]] | ||
1432 | name = "openssl-macros" | ||
1433 | version = "0.1.1" | ||
1434 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1435 | checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c" | ||
1436 | dependencies = [ | ||
1437 | "proc-macro2", | ||
1438 | "quote", | ||
1439 | "syn", | ||
1440 | ] | ||
1441 | |||
1442 | [[package]] | ||
1443 | name = "openssl-probe" | 1267 | name = "openssl-probe" |
1444 | version = "0.1.5" | 1268 | version = "0.1.5" |
1445 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1269 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1446 | checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" | 1270 | checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf" |
1447 | 1271 | ||
1448 | [[package]] | 1272 | [[package]] |
1449 | name = "openssl-sys" | ||
1450 | version = "0.9.98" | ||
1451 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1452 | checksum = "c1665caf8ab2dc9aef43d1c0023bd904633a6a05cb30b0ad59bec2ae986e57a7" | ||
1453 | dependencies = [ | ||
1454 | "cc", | ||
1455 | "libc", | ||
1456 | "pkg-config", | ||
1457 | "vcpkg", | ||
1458 | ] | ||
1459 | |||
1460 | [[package]] | ||
1461 | name = "ordered-multimap" | ||
1462 | version = "0.4.3" | ||
1463 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1464 | checksum = "ccd746e37177e1711c20dd619a1620f34f5c8b569c53590a72dedd5344d8924a" | ||
1465 | dependencies = [ | ||
1466 | "dlv-list", | ||
1467 | "hashbrown 0.12.3", | ||
1468 | ] | ||
1469 | |||
1470 | [[package]] | ||
1471 | name = "outref" | 1273 | name = "outref" |
1472 | version = "0.5.1" | 1274 | version = "0.5.1" |
1473 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1275 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1556,12 +1358,6 @@ dependencies = [ | |||
1556 | ] | 1358 | ] |
1557 | 1359 | ||
1558 | [[package]] | 1360 | [[package]] |
1559 | name = "pkg-config" | ||
1560 | version = "0.3.29" | ||
1561 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1562 | checksum = "2900ede94e305130c13ddd391e0ab7cbaeb783945ae07a279c268cb05109c6cb" | ||
1563 | |||
1564 | [[package]] | ||
1565 | name = "powerfmt" | 1361 | name = "powerfmt" |
1566 | version = "0.2.0" | 1362 | version = "0.2.0" |
1567 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1363 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1577,16 +1373,6 @@ dependencies = [ | |||
1577 | ] | 1373 | ] |
1578 | 1374 | ||
1579 | [[package]] | 1375 | [[package]] |
1580 | name = "quick-xml" | ||
1581 | version = "0.26.0" | ||
1582 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1583 | checksum = "7f50b1c63b38611e7d4d7f68b82d3ad0cc71a2ad2e7f61fc10f1328d917c93cd" | ||
1584 | dependencies = [ | ||
1585 | "memchr", | ||
1586 | "serde", | ||
1587 | ] | ||
1588 | |||
1589 | [[package]] | ||
1590 | name = "quote" | 1376 | name = "quote" |
1591 | version = "1.0.35" | 1377 | version = "1.0.35" |
1592 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1378 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1610,18 +1396,7 @@ version = "0.4.1" | |||
1610 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1396 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1611 | checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" | 1397 | checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" |
1612 | dependencies = [ | 1398 | dependencies = [ |
1613 | "bitflags 1.3.2", | 1399 | "bitflags", |
1614 | ] | ||
1615 | |||
1616 | [[package]] | ||
1617 | name = "redox_users" | ||
1618 | version = "0.4.4" | ||
1619 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1620 | checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4" | ||
1621 | dependencies = [ | ||
1622 | "getrandom", | ||
1623 | "libredox", | ||
1624 | "thiserror", | ||
1625 | ] | 1400 | ] |
1626 | 1401 | ||
1627 | [[package]] | 1402 | [[package]] |
@@ -1656,16 +1431,6 @@ dependencies = [ | |||
1656 | ] | 1431 | ] |
1657 | 1432 | ||
1658 | [[package]] | 1433 | [[package]] |
1659 | name = "rust-ini" | ||
1660 | version = "0.18.0" | ||
1661 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1662 | checksum = "f6d5f2436026b4f6e79dc829837d467cc7e9a55ee40e750d716713540715a2df" | ||
1663 | dependencies = [ | ||
1664 | "cfg-if", | ||
1665 | "ordered-multimap", | ||
1666 | ] | ||
1667 | |||
1668 | [[package]] | ||
1669 | name = "rustc-demangle" | 1434 | name = "rustc-demangle" |
1670 | version = "0.1.23" | 1435 | version = "0.1.23" |
1671 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1436 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1681,19 +1446,6 @@ dependencies = [ | |||
1681 | ] | 1446 | ] |
1682 | 1447 | ||
1683 | [[package]] | 1448 | [[package]] |
1684 | name = "rustix" | ||
1685 | version = "0.38.30" | ||
1686 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
1687 | checksum = "322394588aaf33c24007e8bb3238ee3e4c5c09c084ab32bc73890b99ff326bca" | ||
1688 | dependencies = [ | ||
1689 | "bitflags 2.4.2", | ||
1690 | "errno", | ||
1691 | "libc", | ||
1692 | "linux-raw-sys", | ||
1693 | "windows-sys 0.52.0", | ||
1694 | ] | ||
1695 | |||
1696 | [[package]] | ||
1697 | name = "rustls" | 1449 | name = "rustls" |
1698 | version = "0.21.10" | 1450 | version = "0.21.10" |
1699 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1451 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -1793,7 +1545,7 @@ version = "2.9.2" | |||
1793 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1545 | source = "registry+https://github.com/rust-lang/crates.io-index" |
1794 | checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" | 1546 | checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de" |
1795 | dependencies = [ | 1547 | dependencies = [ |
1796 | "bitflags 1.3.2", | 1548 | "bitflags", |
1797 | "core-foundation", | 1549 | "core-foundation", |
1798 | "core-foundation-sys", | 1550 | "core-foundation-sys", |
1799 | "libc", | 1551 | "libc", |
@@ -1874,7 +1626,6 @@ name = "server" | |||
1874 | version = "0.1.0" | 1626 | version = "0.1.0" |
1875 | dependencies = [ | 1627 | dependencies = [ |
1876 | "aws-config", | 1628 | "aws-config", |
1877 | "aws-creds", | ||
1878 | "aws-sdk-s3", | 1629 | "aws-sdk-s3", |
1879 | "axum", | 1630 | "axum", |
1880 | "base64", | 1631 | "base64", |
@@ -1882,11 +1633,9 @@ dependencies = [ | |||
1882 | "common", | 1633 | "common", |
1883 | "mime", | 1634 | "mime", |
1884 | "serde", | 1635 | "serde", |
1885 | "serde_json", | ||
1886 | "tokio", | 1636 | "tokio", |
1887 | "tokio-util", | 1637 | "tokio-util", |
1888 | "tower", | 1638 | "tower", |
1889 | "tower-service", | ||
1890 | ] | 1639 | ] |
1891 | 1640 | ||
1892 | [[package]] | 1641 | [[package]] |
@@ -1995,46 +1744,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
1995 | checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" | 1744 | checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" |
1996 | 1745 | ||
1997 | [[package]] | 1746 | [[package]] |
1998 | name = "tempfile" | ||
1999 | version = "3.9.0" | ||
2000 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2001 | checksum = "01ce4141aa927a6d1bd34a041795abd0db1cccba5d5f24b009f694bdf3a1f3fa" | ||
2002 | dependencies = [ | ||
2003 | "cfg-if", | ||
2004 | "fastrand", | ||
2005 | "redox_syscall", | ||
2006 | "rustix", | ||
2007 | "windows-sys 0.52.0", | ||
2008 | ] | ||
2009 | |||
2010 | [[package]] | ||
2011 | name = "thiserror" | ||
2012 | version = "1.0.56" | ||
2013 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2014 | checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad" | ||
2015 | dependencies = [ | ||
2016 | "thiserror-impl", | ||
2017 | ] | ||
2018 | |||
2019 | [[package]] | ||
2020 | name = "thiserror-impl" | ||
2021 | version = "1.0.56" | ||
2022 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2023 | checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471" | ||
2024 | dependencies = [ | ||
2025 | "proc-macro2", | ||
2026 | "quote", | ||
2027 | "syn", | ||
2028 | ] | ||
2029 | |||
2030 | [[package]] | ||
2031 | name = "time" | 1747 | name = "time" |
2032 | version = "0.3.31" | 1748 | version = "0.3.31" |
2033 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1749 | source = "registry+https://github.com/rust-lang/crates.io-index" |
2034 | checksum = "f657ba42c3f86e7680e53c8cd3af8abbe56b5491790b46e22e19c0d57463583e" | 1750 | checksum = "f657ba42c3f86e7680e53c8cd3af8abbe56b5491790b46e22e19c0d57463583e" |
2035 | dependencies = [ | 1751 | dependencies = [ |
2036 | "deranged", | 1752 | "deranged", |
2037 | "itoa", | ||
2038 | "powerfmt", | 1753 | "powerfmt", |
2039 | "serde", | 1754 | "serde", |
2040 | "time-core", | 1755 | "time-core", |
@@ -2248,12 +1963,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
2248 | checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560" | 1963 | checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560" |
2249 | 1964 | ||
2250 | [[package]] | 1965 | [[package]] |
2251 | name = "vcpkg" | ||
2252 | version = "0.2.15" | ||
2253 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2254 | checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426" | ||
2255 | |||
2256 | [[package]] | ||
2257 | name = "version_check" | 1966 | name = "version_check" |
2258 | version = "0.9.4" | 1967 | version = "0.9.4" |
2259 | source = "registry+https://github.com/rust-lang/crates.io-index" | 1968 | source = "registry+https://github.com/rust-lang/crates.io-index" |
@@ -2335,28 +2044,6 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
2335 | checksum = "4d91413b1c31d7539ba5ef2451af3f0b833a005eb27a631cec32bc0635a8602b" | 2044 | checksum = "4d91413b1c31d7539ba5ef2451af3f0b833a005eb27a631cec32bc0635a8602b" |
2336 | 2045 | ||
2337 | [[package]] | 2046 | [[package]] |
2338 | name = "winapi" | ||
2339 | version = "0.3.9" | ||
2340 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2341 | checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" | ||
2342 | dependencies = [ | ||
2343 | "winapi-i686-pc-windows-gnu", | ||
2344 | "winapi-x86_64-pc-windows-gnu", | ||
2345 | ] | ||
2346 | |||
2347 | [[package]] | ||
2348 | name = "winapi-i686-pc-windows-gnu" | ||
2349 | version = "0.4.0" | ||
2350 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2351 | checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" | ||
2352 | |||
2353 | [[package]] | ||
2354 | name = "winapi-x86_64-pc-windows-gnu" | ||
2355 | version = "0.4.0" | ||
2356 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
2357 | checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" | ||
2358 | |||
2359 | [[package]] | ||
2360 | name = "windows-core" | 2047 | name = "windows-core" |
2361 | version = "0.52.0" | 2048 | version = "0.52.0" |
2362 | source = "registry+https://github.com/rust-lang/crates.io-index" | 2049 | source = "registry+https://github.com/rust-lang/crates.io-index" |
diff --git a/rs/server/Cargo.toml b/rs/server/Cargo.toml index 987e154..c437597 100644 --- a/rs/server/Cargo.toml +++ b/rs/server/Cargo.toml | |||
@@ -7,14 +7,11 @@ edition = "2021" | |||
7 | aws-config = { version = "1.1.2", features = ["behavior-version-latest"] } | 7 | aws-config = { version = "1.1.2", features = ["behavior-version-latest"] } |
8 | aws-sdk-s3 = "1.12.0" | 8 | aws-sdk-s3 = "1.12.0" |
9 | axum = "0.7" | 9 | axum = "0.7" |
10 | aws-creds = "0.34" | ||
11 | base64 = "0.21" | 10 | base64 = "0.21" |
12 | chrono = { version = "0.4", features = ["serde"] } | 11 | chrono = { version = "0.4", features = ["serde"] } |
13 | common = { path = "../common" } | 12 | common = { path = "../common" } |
14 | mime = "0.3" | 13 | mime = "0.3" |
15 | serde = { version = "1", features = ["derive"] } | 14 | serde = { version = "1", features = ["derive"] } |
16 | serde_json = "1" | ||
17 | tokio = { version = "1.35", features = ["full"] } | 15 | tokio = { version = "1.35", features = ["full"] } |
18 | tokio-util = "0.7" | 16 | tokio-util = "0.7" |
19 | tower = "0.4" | 17 | tower = "0.4" |
20 | tower-service = "0.3" | ||