@backtomyfuture/exchange-cli-darwin-arm64 0.1.8 → 0.1.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (243) hide show
  1. package/bin/_internal/Python +0 -0
  2. package/bin/_internal/Python.framework/Python +0 -0
  3. package/bin/_internal/Python.framework/Resources/Info.plist +3 -3
  4. package/bin/_internal/Python.framework/Versions/3.12/Python +0 -0
  5. package/bin/_internal/Python.framework/Versions/{3.14 → 3.12}/Resources/Info.plist +3 -3
  6. package/bin/_internal/Python.framework/Versions/Current/Python +0 -0
  7. package/bin/_internal/Python.framework/Versions/Current/Resources/Info.plist +3 -3
  8. package/bin/_internal/_cffi_backend.cpython-312-darwin.so +0 -0
  9. package/bin/_internal/ada92cb5d92a588d1b93__mypyc.cpython-312-darwin.so +0 -0
  10. package/bin/_internal/base_library.zip +0 -0
  11. package/bin/_internal/certifi/cacert.pem +0 -631
  12. package/bin/_internal/charset_normalizer/{md.cpython-314-darwin.so → cd.cpython-312-darwin.so} +0 -0
  13. package/bin/_internal/charset_normalizer/{cd.cpython-314-darwin.so → md.cpython-312-darwin.so} +0 -0
  14. package/bin/_internal/{click-8.3.2.dist-info → click-8.4.2.dist-info}/METADATA +1 -1
  15. package/bin/_internal/click-8.4.2.dist-info/RECORD +40 -0
  16. package/bin/_internal/cryptography/hazmat/bindings/_rust.abi3.so +0 -0
  17. package/bin/_internal/{cryptography-46.0.7.dist-info → cryptography-48.0.1.dist-info}/METADATA +7 -36
  18. package/bin/_internal/{cryptography-46.0.7.dist-info → cryptography-48.0.1.dist-info}/RECORD +137 -122
  19. package/bin/_internal/{cryptography-46.0.7.dist-info → cryptography-48.0.1.dist-info}/WHEEL +1 -1
  20. package/bin/_internal/cryptography-48.0.1.dist-info/sboms/cryptography-rust.cyclonedx.json +1362 -0
  21. package/bin/_internal/cryptography-48.0.1.dist-info/sboms/sbom.json +43 -0
  22. package/bin/_internal/exchangelib/__init__.py +120 -0
  23. package/bin/_internal/exchangelib/account.py +896 -0
  24. package/bin/_internal/exchangelib/attachments.py +268 -0
  25. package/bin/_internal/exchangelib/autodiscover/__init__.py +24 -0
  26. package/bin/_internal/exchangelib/autodiscover/cache.py +150 -0
  27. package/bin/_internal/exchangelib/autodiscover/discovery.py +491 -0
  28. package/bin/_internal/exchangelib/autodiscover/protocol.py +58 -0
  29. package/bin/_internal/exchangelib/configuration.py +106 -0
  30. package/bin/_internal/exchangelib/credentials.py +319 -0
  31. package/bin/_internal/exchangelib/errors.py +1710 -0
  32. package/bin/_internal/exchangelib/ewsdatetime.py +309 -0
  33. package/bin/_internal/exchangelib/extended_properties.py +311 -0
  34. package/bin/_internal/exchangelib/fields.py +1842 -0
  35. package/bin/_internal/exchangelib/folders/__init__.py +249 -0
  36. package/bin/_internal/exchangelib/folders/base.py +954 -0
  37. package/bin/_internal/exchangelib/folders/collections.py +576 -0
  38. package/bin/_internal/exchangelib/folders/known_folders.py +856 -0
  39. package/bin/_internal/exchangelib/folders/queryset.py +187 -0
  40. package/bin/_internal/exchangelib/folders/roots.py +390 -0
  41. package/bin/_internal/exchangelib/indexed_properties.py +96 -0
  42. package/bin/_internal/exchangelib/items/__init__.py +147 -0
  43. package/bin/_internal/exchangelib/items/base.py +241 -0
  44. package/bin/_internal/exchangelib/items/calendar_item.py +466 -0
  45. package/bin/_internal/exchangelib/items/contact.py +263 -0
  46. package/bin/_internal/exchangelib/items/item.py +413 -0
  47. package/bin/_internal/exchangelib/items/message.py +201 -0
  48. package/bin/_internal/exchangelib/items/post.py +38 -0
  49. package/bin/_internal/exchangelib/items/task.py +139 -0
  50. package/bin/_internal/exchangelib/properties.py +2364 -0
  51. package/bin/_internal/exchangelib/protocol.py +823 -0
  52. package/bin/_internal/exchangelib/queryset.py +691 -0
  53. package/bin/_internal/exchangelib/recurrence.py +349 -0
  54. package/bin/_internal/exchangelib/restriction.py +568 -0
  55. package/bin/_internal/exchangelib/services/__init__.py +117 -0
  56. package/bin/_internal/exchangelib/services/archive_item.py +33 -0
  57. package/bin/_internal/exchangelib/services/common.py +983 -0
  58. package/bin/_internal/exchangelib/services/convert_id.py +45 -0
  59. package/bin/_internal/exchangelib/services/copy_item.py +7 -0
  60. package/bin/_internal/exchangelib/services/create_attachment.py +34 -0
  61. package/bin/_internal/exchangelib/services/create_folder.py +45 -0
  62. package/bin/_internal/exchangelib/services/create_item.py +97 -0
  63. package/bin/_internal/exchangelib/services/create_user_configuration.py +19 -0
  64. package/bin/_internal/exchangelib/services/delete_attachment.py +28 -0
  65. package/bin/_internal/exchangelib/services/delete_folder.py +21 -0
  66. package/bin/_internal/exchangelib/services/delete_item.py +51 -0
  67. package/bin/_internal/exchangelib/services/delete_user_configuration.py +19 -0
  68. package/bin/_internal/exchangelib/services/empty_folder.py +25 -0
  69. package/bin/_internal/exchangelib/services/expand_dl.py +21 -0
  70. package/bin/_internal/exchangelib/services/export_items.py +27 -0
  71. package/bin/_internal/exchangelib/services/find_folder.py +80 -0
  72. package/bin/_internal/exchangelib/services/find_item.py +112 -0
  73. package/bin/_internal/exchangelib/services/find_people.py +106 -0
  74. package/bin/_internal/exchangelib/services/get_attachment.py +117 -0
  75. package/bin/_internal/exchangelib/services/get_delegate.py +45 -0
  76. package/bin/_internal/exchangelib/services/get_events.py +39 -0
  77. package/bin/_internal/exchangelib/services/get_folder.py +65 -0
  78. package/bin/_internal/exchangelib/services/get_item.py +41 -0
  79. package/bin/_internal/exchangelib/services/get_mail_tips.py +43 -0
  80. package/bin/_internal/exchangelib/services/get_persona.py +31 -0
  81. package/bin/_internal/exchangelib/services/get_room_lists.py +21 -0
  82. package/bin/_internal/exchangelib/services/get_rooms.py +21 -0
  83. package/bin/_internal/exchangelib/services/get_searchable_mailboxes.py +48 -0
  84. package/bin/_internal/exchangelib/services/get_server_time_zones.py +39 -0
  85. package/bin/_internal/exchangelib/services/get_streaming_events.py +102 -0
  86. package/bin/_internal/exchangelib/services/get_user_availability.py +67 -0
  87. package/bin/_internal/exchangelib/services/get_user_configuration.py +43 -0
  88. package/bin/_internal/exchangelib/services/get_user_oof_settings.py +40 -0
  89. package/bin/_internal/exchangelib/services/get_user_settings.py +87 -0
  90. package/bin/_internal/exchangelib/services/inbox_rules.py +104 -0
  91. package/bin/_internal/exchangelib/services/mark_as_junk.py +27 -0
  92. package/bin/_internal/exchangelib/services/move_folder.py +27 -0
  93. package/bin/_internal/exchangelib/services/move_item.py +28 -0
  94. package/bin/_internal/exchangelib/services/resolve_names.py +104 -0
  95. package/bin/_internal/exchangelib/services/send_item.py +26 -0
  96. package/bin/_internal/exchangelib/services/send_notification.py +43 -0
  97. package/bin/_internal/exchangelib/services/set_user_oof_settings.py +34 -0
  98. package/bin/_internal/exchangelib/services/subscribe.py +125 -0
  99. package/bin/_internal/exchangelib/services/sync_folder_hierarchy.py +95 -0
  100. package/bin/_internal/exchangelib/services/sync_folder_items.py +77 -0
  101. package/bin/_internal/exchangelib/services/unsubscribe.py +21 -0
  102. package/bin/_internal/exchangelib/services/update_folder.py +158 -0
  103. package/bin/_internal/exchangelib/services/update_item.py +113 -0
  104. package/bin/_internal/exchangelib/services/update_user_configuration.py +17 -0
  105. package/bin/_internal/exchangelib/services/upload_items.py +47 -0
  106. package/bin/_internal/exchangelib/settings.py +88 -0
  107. package/bin/_internal/exchangelib/transport.py +214 -0
  108. package/bin/_internal/exchangelib/util.py +894 -0
  109. package/bin/_internal/exchangelib/version.py +320 -0
  110. package/bin/_internal/exchangelib/winzone.py +662 -0
  111. package/bin/_internal/exchangelib-5.6.0.dist-info/INSTALLER +1 -0
  112. package/bin/_internal/exchangelib-5.6.0.dist-info/METADATA +77 -0
  113. package/bin/_internal/exchangelib-5.6.0.dist-info/RECORD +184 -0
  114. package/bin/_internal/exchangelib-5.6.0.dist-info/licenses/LICENSE +21 -0
  115. package/bin/_internal/exchangelib-5.6.0.dist-info/top_level.txt +1 -0
  116. package/bin/_internal/libcrypto.3.dylib +0 -0
  117. package/bin/_internal/libssl.3.dylib +0 -0
  118. package/bin/_internal/lxml/_elementpath.cpython-312-darwin.so +0 -0
  119. package/bin/_internal/lxml/builder.cpython-312-darwin.so +0 -0
  120. package/bin/_internal/lxml/{etree.cpython-314-darwin.so → etree.cpython-312-darwin.so} +0 -0
  121. package/bin/_internal/lxml/html/_difflib.cpython-312-darwin.so +0 -0
  122. package/bin/_internal/lxml/html/diff.cpython-312-darwin.so +0 -0
  123. package/bin/_internal/lxml/{objectify.cpython-314-darwin.so → objectify.cpython-312-darwin.so} +0 -0
  124. package/bin/_internal/lxml/sax.cpython-312-darwin.so +0 -0
  125. package/bin/_internal/python3.12/lib-dynload/_asyncio.cpython-312-darwin.so +0 -0
  126. package/bin/_internal/{python3.14/lib-dynload/termios.cpython-314-darwin.so → python3.12/lib-dynload/_bisect.cpython-312-darwin.so} +0 -0
  127. package/bin/_internal/{python3.14/lib-dynload/_sha2.cpython-314-darwin.so → python3.12/lib-dynload/_blake2.cpython-312-darwin.so} +0 -0
  128. package/bin/_internal/{python3.14/lib-dynload/_bz2.cpython-314-darwin.so → python3.12/lib-dynload/_bz2.cpython-312-darwin.so} +0 -0
  129. package/bin/_internal/{python3.14/lib-dynload/_codecs_cn.cpython-314-darwin.so → python3.12/lib-dynload/_codecs_cn.cpython-312-darwin.so} +0 -0
  130. package/bin/_internal/{python3.14/lib-dynload/_codecs_hk.cpython-314-darwin.so → python3.12/lib-dynload/_codecs_hk.cpython-312-darwin.so} +0 -0
  131. package/bin/_internal/{python3.14/lib-dynload/_interpqueues.cpython-314-darwin.so → python3.12/lib-dynload/_codecs_iso2022.cpython-312-darwin.so} +0 -0
  132. package/bin/_internal/{python3.14/lib-dynload/_codecs_jp.cpython-314-darwin.so → python3.12/lib-dynload/_codecs_jp.cpython-312-darwin.so} +0 -0
  133. package/bin/_internal/{python3.14/lib-dynload/_codecs_kr.cpython-314-darwin.so → python3.12/lib-dynload/_codecs_kr.cpython-312-darwin.so} +0 -0
  134. package/bin/_internal/{python3.14/lib-dynload/_codecs_tw.cpython-314-darwin.so → python3.12/lib-dynload/_codecs_tw.cpython-312-darwin.so} +0 -0
  135. package/bin/_internal/{python3.14/lib-dynload/_statistics.cpython-314-darwin.so → python3.12/lib-dynload/_contextvars.cpython-312-darwin.so} +0 -0
  136. package/bin/_internal/{python3.14/lib-dynload/_csv.cpython-314-darwin.so → python3.12/lib-dynload/_csv.cpython-312-darwin.so} +0 -0
  137. package/bin/_internal/python3.12/lib-dynload/_ctypes.cpython-312-darwin.so +0 -0
  138. package/bin/_internal/python3.12/lib-dynload/_datetime.cpython-312-darwin.so +0 -0
  139. package/bin/_internal/{python3.14/lib-dynload/_dbm.cpython-314-darwin.so → python3.12/lib-dynload/_dbm.cpython-312-darwin.so} +0 -0
  140. package/bin/_internal/python3.12/lib-dynload/_decimal.cpython-312-darwin.so +0 -0
  141. package/bin/_internal/python3.12/lib-dynload/_elementtree.cpython-312-darwin.so +0 -0
  142. package/bin/_internal/python3.12/lib-dynload/_hashlib.cpython-312-darwin.so +0 -0
  143. package/bin/_internal/{python3.14/lib-dynload/_heapq.cpython-314-darwin.so → python3.12/lib-dynload/_heapq.cpython-312-darwin.so} +0 -0
  144. package/bin/_internal/python3.12/lib-dynload/_json.cpython-312-darwin.so +0 -0
  145. package/bin/_internal/python3.12/lib-dynload/_lzma.cpython-312-darwin.so +0 -0
  146. package/bin/_internal/{python3.14/lib-dynload/_md5.cpython-314-darwin.so → python3.12/lib-dynload/_md5.cpython-312-darwin.so} +0 -0
  147. package/bin/_internal/python3.12/lib-dynload/_multibytecodec.cpython-312-darwin.so +0 -0
  148. package/bin/_internal/{python3.14/lib-dynload/_multiprocessing.cpython-314-darwin.so → python3.12/lib-dynload/_multiprocessing.cpython-312-darwin.so} +0 -0
  149. package/bin/_internal/python3.12/lib-dynload/_opcode.cpython-312-darwin.so +0 -0
  150. package/bin/_internal/python3.12/lib-dynload/_pickle.cpython-312-darwin.so +0 -0
  151. package/bin/_internal/{python3.14/lib-dynload/_bisect.cpython-314-darwin.so → python3.12/lib-dynload/_posixshmem.cpython-312-darwin.so} +0 -0
  152. package/bin/_internal/{python3.14/lib-dynload/_posixsubprocess.cpython-314-darwin.so → python3.12/lib-dynload/_posixsubprocess.cpython-312-darwin.so} +0 -0
  153. package/bin/_internal/{python3.14/lib-dynload/_queue.cpython-314-darwin.so → python3.12/lib-dynload/_queue.cpython-312-darwin.so} +0 -0
  154. package/bin/_internal/{python3.14/lib-dynload/_random.cpython-314-darwin.so → python3.12/lib-dynload/_random.cpython-312-darwin.so} +0 -0
  155. package/bin/_internal/{python3.14/lib-dynload/_scproxy.cpython-314-darwin.so → python3.12/lib-dynload/_scproxy.cpython-312-darwin.so} +0 -0
  156. package/bin/_internal/{python3.14/lib-dynload/_sha1.cpython-314-darwin.so → python3.12/lib-dynload/_sha1.cpython-312-darwin.so} +0 -0
  157. package/bin/_internal/python3.12/lib-dynload/_sha2.cpython-312-darwin.so +0 -0
  158. package/bin/_internal/{python3.14/lib-dynload/_blake2.cpython-314-darwin.so → python3.12/lib-dynload/_sha3.cpython-312-darwin.so} +0 -0
  159. package/bin/_internal/python3.12/lib-dynload/_socket.cpython-312-darwin.so +0 -0
  160. package/bin/_internal/python3.12/lib-dynload/_ssl.cpython-312-darwin.so +0 -0
  161. package/bin/_internal/{python3.14/lib-dynload/_posixshmem.cpython-314-darwin.so → python3.12/lib-dynload/_statistics.cpython-312-darwin.so} +0 -0
  162. package/bin/_internal/python3.12/lib-dynload/_struct.cpython-312-darwin.so +0 -0
  163. package/bin/_internal/{python3.14/lib-dynload/_uuid.cpython-314-darwin.so → python3.12/lib-dynload/_uuid.cpython-312-darwin.so} +0 -0
  164. package/bin/_internal/{python3.14/lib-dynload/_zoneinfo.cpython-314-darwin.so → python3.12/lib-dynload/_zoneinfo.cpython-312-darwin.so} +0 -0
  165. package/bin/_internal/python3.12/lib-dynload/array.cpython-312-darwin.so +0 -0
  166. package/bin/_internal/{python3.14/lib-dynload/binascii.cpython-314-darwin.so → python3.12/lib-dynload/binascii.cpython-312-darwin.so} +0 -0
  167. package/bin/_internal/{python3.14/lib-dynload/fcntl.cpython-314-darwin.so → python3.12/lib-dynload/fcntl.cpython-312-darwin.so} +0 -0
  168. package/bin/_internal/{python3.14/lib-dynload/grp.cpython-314-darwin.so → python3.12/lib-dynload/grp.cpython-312-darwin.so} +0 -0
  169. package/bin/_internal/python3.12/lib-dynload/math.cpython-312-darwin.so +0 -0
  170. package/bin/_internal/{python3.14/lib-dynload/_sha3.cpython-314-darwin.so → python3.12/lib-dynload/mmap.cpython-312-darwin.so} +0 -0
  171. package/bin/_internal/python3.12/lib-dynload/pyexpat.cpython-312-darwin.so +0 -0
  172. package/bin/_internal/python3.12/lib-dynload/readline.cpython-312-darwin.so +0 -0
  173. package/bin/_internal/{python3.14/lib-dynload/resource.cpython-314-darwin.so → python3.12/lib-dynload/resource.cpython-312-darwin.so} +0 -0
  174. package/bin/_internal/{python3.14/lib-dynload/select.cpython-314-darwin.so → python3.12/lib-dynload/select.cpython-312-darwin.so} +0 -0
  175. package/bin/_internal/{python3.14/lib-dynload/syslog.cpython-314-darwin.so → python3.12/lib-dynload/syslog.cpython-312-darwin.so} +0 -0
  176. package/bin/_internal/python3.12/lib-dynload/termios.cpython-312-darwin.so +0 -0
  177. package/bin/_internal/python3.12/lib-dynload/unicodedata.cpython-312-darwin.so +0 -0
  178. package/bin/_internal/python3.12/lib-dynload/zlib.cpython-312-darwin.so +0 -0
  179. package/bin/_internal/tzdata/zoneinfo/Africa/Casablanca +0 -0
  180. package/bin/_internal/tzdata/zoneinfo/Africa/El_Aaiun +0 -0
  181. package/bin/_internal/tzdata/zoneinfo/America/Edmonton +0 -0
  182. package/bin/_internal/tzdata/zoneinfo/America/Vancouver +0 -0
  183. package/bin/_internal/tzdata/zoneinfo/America/Yellowknife +0 -0
  184. package/bin/_internal/tzdata/zoneinfo/Asia/Ho_Chi_Minh +0 -0
  185. package/bin/_internal/tzdata/zoneinfo/Asia/Saigon +0 -0
  186. package/bin/_internal/tzdata/zoneinfo/Canada/Mountain +0 -0
  187. package/bin/_internal/tzdata/zoneinfo/Canada/Pacific +0 -0
  188. package/bin/_internal/tzdata/zoneinfo/leapseconds +4 -4
  189. package/bin/_internal/tzdata/zoneinfo/tzdata.zi +11 -131
  190. package/bin/_internal/tzdata/zoneinfo/zone.tab +2 -2
  191. package/bin/_internal/tzdata/zoneinfo/zone1970.tab +2 -2
  192. package/bin/_internal/tzdata/zoneinfo/zonenow.tab +8 -2
  193. package/bin/exchange-cli +0 -0
  194. package/package.json +10 -7
  195. package/bin/_internal/81d243bd2c585b0f4821__mypyc.cpython-314-darwin.so +0 -0
  196. package/bin/_internal/Python.framework/Versions/3.14/Python +0 -0
  197. package/bin/_internal/_cffi_backend.cpython-314-darwin.so +0 -0
  198. package/bin/_internal/click-8.3.2.dist-info/RECORD +0 -40
  199. package/bin/_internal/liblzma.5.dylib +0 -0
  200. package/bin/_internal/libmpdec.4.dylib +0 -0
  201. package/bin/_internal/libzstd.1.dylib +0 -0
  202. package/bin/_internal/lxml/_elementpath.cpython-314-darwin.so +0 -0
  203. package/bin/_internal/lxml/builder.cpython-314-darwin.so +0 -0
  204. package/bin/_internal/lxml/html/_difflib.cpython-314-darwin.so +0 -0
  205. package/bin/_internal/lxml/html/diff.cpython-314-darwin.so +0 -0
  206. package/bin/_internal/lxml/sax.cpython-314-darwin.so +0 -0
  207. package/bin/_internal/python3.14/lib-dynload/_asyncio.cpython-314-darwin.so +0 -0
  208. package/bin/_internal/python3.14/lib-dynload/_codecs_iso2022.cpython-314-darwin.so +0 -0
  209. package/bin/_internal/python3.14/lib-dynload/_ctypes.cpython-314-darwin.so +0 -0
  210. package/bin/_internal/python3.14/lib-dynload/_decimal.cpython-314-darwin.so +0 -0
  211. package/bin/_internal/python3.14/lib-dynload/_elementtree.cpython-314-darwin.so +0 -0
  212. package/bin/_internal/python3.14/lib-dynload/_hashlib.cpython-314-darwin.so +0 -0
  213. package/bin/_internal/python3.14/lib-dynload/_hmac.cpython-314-darwin.so +0 -0
  214. package/bin/_internal/python3.14/lib-dynload/_interpreters.cpython-314-darwin.so +0 -0
  215. package/bin/_internal/python3.14/lib-dynload/_json.cpython-314-darwin.so +0 -0
  216. package/bin/_internal/python3.14/lib-dynload/_lzma.cpython-314-darwin.so +0 -0
  217. package/bin/_internal/python3.14/lib-dynload/_multibytecodec.cpython-314-darwin.so +0 -0
  218. package/bin/_internal/python3.14/lib-dynload/_pickle.cpython-314-darwin.so +0 -0
  219. package/bin/_internal/python3.14/lib-dynload/_socket.cpython-314-darwin.so +0 -0
  220. package/bin/_internal/python3.14/lib-dynload/_ssl.cpython-314-darwin.so +0 -0
  221. package/bin/_internal/python3.14/lib-dynload/_struct.cpython-314-darwin.so +0 -0
  222. package/bin/_internal/python3.14/lib-dynload/_zstd.cpython-314-darwin.so +0 -0
  223. package/bin/_internal/python3.14/lib-dynload/array.cpython-314-darwin.so +0 -0
  224. package/bin/_internal/python3.14/lib-dynload/math.cpython-314-darwin.so +0 -0
  225. package/bin/_internal/python3.14/lib-dynload/mmap.cpython-314-darwin.so +0 -0
  226. package/bin/_internal/python3.14/lib-dynload/pyexpat.cpython-314-darwin.so +0 -0
  227. package/bin/_internal/python3.14/lib-dynload/readline.cpython-314-darwin.so +0 -0
  228. package/bin/_internal/python3.14/lib-dynload/unicodedata.cpython-314-darwin.so +0 -0
  229. package/bin/_internal/python3.14/lib-dynload/zlib.cpython-314-darwin.so +0 -0
  230. package/bin/_internal/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/INSTALLER +0 -1
  231. package/bin/_internal/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/METADATA +0 -133
  232. package/bin/_internal/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/RECORD +0 -21
  233. package/bin/_internal/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/REQUESTED +0 -0
  234. package/bin/_internal/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/licenses/LICENSE +0 -73
  235. package/bin/_internal/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/top_level.txt +0 -1
  236. /package/bin/_internal/{click-8.3.2.dist-info → click-8.4.2.dist-info}/INSTALLER +0 -0
  237. /package/bin/_internal/{click-8.3.2.dist-info → click-8.4.2.dist-info}/WHEEL +0 -0
  238. /package/bin/_internal/{click-8.3.2.dist-info → click-8.4.2.dist-info}/licenses/LICENSE.txt +0 -0
  239. /package/bin/_internal/{cryptography-46.0.7.dist-info → cryptography-48.0.1.dist-info}/INSTALLER +0 -0
  240. /package/bin/_internal/{cryptography-46.0.7.dist-info → cryptography-48.0.1.dist-info}/licenses/LICENSE +0 -0
  241. /package/bin/_internal/{cryptography-46.0.7.dist-info → cryptography-48.0.1.dist-info}/licenses/LICENSE.APACHE +0 -0
  242. /package/bin/_internal/{cryptography-46.0.7.dist-info → cryptography-48.0.1.dist-info}/licenses/LICENSE.BSD +0 -0
  243. /package/bin/_internal/{setuptools/_vendor/importlib_metadata-8.7.1.dist-info → exchangelib-5.6.0.dist-info}/WHEEL +0 -0
@@ -0,0 +1,1362 @@
1
+ {
2
+ "bomFormat": "CycloneDX",
3
+ "specVersion": "1.5",
4
+ "version": 1,
5
+ "serialNumber": "urn:uuid:63fd454c-a4c2-4382-a519-1a9c318d67ef",
6
+ "metadata": {
7
+ "timestamp": "2026-06-09T22:26:21.220763000Z",
8
+ "tools": [
9
+ {
10
+ "vendor": "CycloneDX",
11
+ "name": "cargo-cyclonedx",
12
+ "version": "0.5.9"
13
+ }
14
+ ],
15
+ "authors": [
16
+ {
17
+ "name": "The cryptography developers",
18
+ "email": "cryptography-dev@python.org"
19
+ }
20
+ ],
21
+ "component": {
22
+ "type": "library",
23
+ "bom-ref": "path+file:///Users/runner/work/cryptography/cryptography/wheelhouse/.tmpGH9yn5/cryptography-48.0.1/src/rust#cryptography-rust@0.1.0",
24
+ "author": "The cryptography developers <cryptography-dev@python.org>",
25
+ "name": "cryptography-rust",
26
+ "version": "0.1.0",
27
+ "scope": "required",
28
+ "licenses": [
29
+ {
30
+ "expression": "Apache-2.0 OR BSD-3-Clause"
31
+ }
32
+ ],
33
+ "purl": "pkg:cargo/cryptography-rust@0.1.0?download_url=file://.",
34
+ "components": [
35
+ {
36
+ "type": "library",
37
+ "bom-ref": "path+file:///Users/runner/work/cryptography/cryptography/wheelhouse/.tmpGH9yn5/cryptography-48.0.1/src/rust#cryptography-rust@0.1.0 bin-target-0",
38
+ "name": "cryptography_rust",
39
+ "version": "0.1.0",
40
+ "purl": "pkg:cargo/cryptography-rust@0.1.0?download_url=file://.#src/lib.rs"
41
+ }
42
+ ]
43
+ },
44
+ "properties": [
45
+ {
46
+ "name": "cdx:rustc:sbom:target:all_targets",
47
+ "value": "true"
48
+ }
49
+ ]
50
+ },
51
+ "components": [
52
+ {
53
+ "type": "library",
54
+ "bom-ref": "path+file:///Users/runner/work/cryptography/cryptography/wheelhouse/.tmpGH9yn5/cryptography-48.0.1/src/rust/cryptography-cffi#0.1.0",
55
+ "author": "The cryptography developers <cryptography-dev@python.org>",
56
+ "name": "cryptography-cffi",
57
+ "version": "0.1.0",
58
+ "scope": "required",
59
+ "licenses": [
60
+ {
61
+ "expression": "Apache-2.0 OR BSD-3-Clause"
62
+ }
63
+ ],
64
+ "purl": "pkg:cargo/cryptography-cffi@0.1.0?download_url=file://cryptography-cffi"
65
+ },
66
+ {
67
+ "type": "library",
68
+ "bom-ref": "path+file:///Users/runner/work/cryptography/cryptography/wheelhouse/.tmpGH9yn5/cryptography-48.0.1/src/rust/cryptography-crypto#0.1.0",
69
+ "author": "The cryptography developers <cryptography-dev@python.org>",
70
+ "name": "cryptography-crypto",
71
+ "version": "0.1.0",
72
+ "scope": "required",
73
+ "licenses": [
74
+ {
75
+ "expression": "Apache-2.0 OR BSD-3-Clause"
76
+ }
77
+ ],
78
+ "purl": "pkg:cargo/cryptography-crypto@0.1.0?download_url=file://cryptography-crypto"
79
+ },
80
+ {
81
+ "type": "library",
82
+ "bom-ref": "path+file:///Users/runner/work/cryptography/cryptography/wheelhouse/.tmpGH9yn5/cryptography-48.0.1/src/rust/cryptography-keepalive#0.1.0",
83
+ "author": "The cryptography developers <cryptography-dev@python.org>",
84
+ "name": "cryptography-keepalive",
85
+ "version": "0.1.0",
86
+ "scope": "required",
87
+ "licenses": [
88
+ {
89
+ "expression": "Apache-2.0 OR BSD-3-Clause"
90
+ }
91
+ ],
92
+ "purl": "pkg:cargo/cryptography-keepalive@0.1.0?download_url=file://cryptography-keepalive"
93
+ },
94
+ {
95
+ "type": "library",
96
+ "bom-ref": "path+file:///Users/runner/work/cryptography/cryptography/wheelhouse/.tmpGH9yn5/cryptography-48.0.1/src/rust/cryptography-key-parsing#0.1.0",
97
+ "author": "The cryptography developers <cryptography-dev@python.org>",
98
+ "name": "cryptography-key-parsing",
99
+ "version": "0.1.0",
100
+ "scope": "required",
101
+ "licenses": [
102
+ {
103
+ "expression": "Apache-2.0 OR BSD-3-Clause"
104
+ }
105
+ ],
106
+ "purl": "pkg:cargo/cryptography-key-parsing@0.1.0?download_url=file://cryptography-key-parsing"
107
+ },
108
+ {
109
+ "type": "library",
110
+ "bom-ref": "path+file:///Users/runner/work/cryptography/cryptography/wheelhouse/.tmpGH9yn5/cryptography-48.0.1/src/rust/cryptography-openssl#0.1.0",
111
+ "author": "The cryptography developers <cryptography-dev@python.org>",
112
+ "name": "cryptography-openssl",
113
+ "version": "0.1.0",
114
+ "scope": "required",
115
+ "licenses": [
116
+ {
117
+ "expression": "Apache-2.0 OR BSD-3-Clause"
118
+ }
119
+ ],
120
+ "purl": "pkg:cargo/cryptography-openssl@0.1.0?download_url=file://cryptography-openssl"
121
+ },
122
+ {
123
+ "type": "library",
124
+ "bom-ref": "path+file:///Users/runner/work/cryptography/cryptography/wheelhouse/.tmpGH9yn5/cryptography-48.0.1/src/rust/cryptography-x509#0.1.0",
125
+ "author": "The cryptography developers <cryptography-dev@python.org>",
126
+ "name": "cryptography-x509",
127
+ "version": "0.1.0",
128
+ "scope": "required",
129
+ "licenses": [
130
+ {
131
+ "expression": "Apache-2.0 OR BSD-3-Clause"
132
+ }
133
+ ],
134
+ "purl": "pkg:cargo/cryptography-x509@0.1.0?download_url=file://cryptography-x509"
135
+ },
136
+ {
137
+ "type": "library",
138
+ "bom-ref": "path+file:///Users/runner/work/cryptography/cryptography/wheelhouse/.tmpGH9yn5/cryptography-48.0.1/src/rust/cryptography-x509-verification#0.1.0",
139
+ "author": "The cryptography developers <cryptography-dev@python.org>",
140
+ "name": "cryptography-x509-verification",
141
+ "version": "0.1.0",
142
+ "scope": "required",
143
+ "licenses": [
144
+ {
145
+ "expression": "Apache-2.0 OR BSD-3-Clause"
146
+ }
147
+ ],
148
+ "purl": "pkg:cargo/cryptography-x509-verification@0.1.0?download_url=file://cryptography-x509-verification"
149
+ },
150
+ {
151
+ "type": "library",
152
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#asn1@0.24.1",
153
+ "author": "Alex Gaynor <alex.gaynor@gmail.com>",
154
+ "name": "asn1",
155
+ "version": "0.24.1",
156
+ "description": "ASN.1 (DER) parser and writer for Rust.",
157
+ "scope": "required",
158
+ "hashes": [
159
+ {
160
+ "alg": "SHA-256",
161
+ "content": "c9795210620c0cb3f9a7ce4f882808c38e1ef7b347c90591dceae0886e031fb1"
162
+ }
163
+ ],
164
+ "licenses": [
165
+ {
166
+ "expression": "BSD-3-Clause"
167
+ }
168
+ ],
169
+ "purl": "pkg:cargo/asn1@0.24.1",
170
+ "externalReferences": [
171
+ {
172
+ "type": "vcs",
173
+ "url": "https://github.com/alex/rust-asn1"
174
+ }
175
+ ]
176
+ },
177
+ {
178
+ "type": "library",
179
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#asn1_derive@0.24.1",
180
+ "author": "Alex Gaynor <alex.gaynor@gmail.com>",
181
+ "name": "asn1_derive",
182
+ "version": "0.24.1",
183
+ "description": "#[derive] support for asn1",
184
+ "scope": "required",
185
+ "hashes": [
186
+ {
187
+ "alg": "SHA-256",
188
+ "content": "909e307f1cc32bb8bccbd98f446e6d1bf03fa30f7b53a4337da7181ad30fa11a"
189
+ }
190
+ ],
191
+ "licenses": [
192
+ {
193
+ "expression": "BSD-3-Clause"
194
+ }
195
+ ],
196
+ "purl": "pkg:cargo/asn1_derive@0.24.1",
197
+ "externalReferences": [
198
+ {
199
+ "type": "vcs",
200
+ "url": "https://github.com/alex/rust-asn1"
201
+ }
202
+ ]
203
+ },
204
+ {
205
+ "type": "library",
206
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1",
207
+ "author": "Marshall Pierce <marshall@mpierce.org>",
208
+ "name": "base64",
209
+ "version": "0.22.1",
210
+ "description": "encodes and decodes base64 as bytes or utf8",
211
+ "scope": "required",
212
+ "hashes": [
213
+ {
214
+ "alg": "SHA-256",
215
+ "content": "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
216
+ }
217
+ ],
218
+ "licenses": [
219
+ {
220
+ "expression": "MIT OR Apache-2.0"
221
+ }
222
+ ],
223
+ "purl": "pkg:cargo/base64@0.22.1",
224
+ "externalReferences": [
225
+ {
226
+ "type": "documentation",
227
+ "url": "https://docs.rs/base64"
228
+ },
229
+ {
230
+ "type": "vcs",
231
+ "url": "https://github.com/marshallpierce/rust-base64"
232
+ }
233
+ ]
234
+ },
235
+ {
236
+ "type": "library",
237
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.11.1",
238
+ "author": "The Rust Project Developers",
239
+ "name": "bitflags",
240
+ "version": "2.11.1",
241
+ "description": "A macro to generate structures which behave like bitflags. ",
242
+ "scope": "required",
243
+ "hashes": [
244
+ {
245
+ "alg": "SHA-256",
246
+ "content": "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
247
+ }
248
+ ],
249
+ "licenses": [
250
+ {
251
+ "expression": "MIT OR Apache-2.0"
252
+ }
253
+ ],
254
+ "purl": "pkg:cargo/bitflags@2.11.1",
255
+ "externalReferences": [
256
+ {
257
+ "type": "documentation",
258
+ "url": "https://docs.rs/bitflags"
259
+ },
260
+ {
261
+ "type": "website",
262
+ "url": "https://github.com/bitflags/bitflags"
263
+ },
264
+ {
265
+ "type": "vcs",
266
+ "url": "https://github.com/bitflags/bitflags"
267
+ }
268
+ ]
269
+ },
270
+ {
271
+ "type": "library",
272
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.61",
273
+ "author": "Alex Crichton <alex@alexcrichton.com>",
274
+ "name": "cc",
275
+ "version": "1.2.61",
276
+ "description": "A build-time dependency for Cargo build scripts to assist in invoking the native C compiler to compile native C code into a static archive to be linked into Rust code. ",
277
+ "scope": "excluded",
278
+ "hashes": [
279
+ {
280
+ "alg": "SHA-256",
281
+ "content": "d16d90359e986641506914ba71350897565610e87ce0ad9e6f28569db3dd5c6d"
282
+ }
283
+ ],
284
+ "licenses": [
285
+ {
286
+ "expression": "MIT OR Apache-2.0"
287
+ }
288
+ ],
289
+ "purl": "pkg:cargo/cc@1.2.61",
290
+ "externalReferences": [
291
+ {
292
+ "type": "documentation",
293
+ "url": "https://docs.rs/cc"
294
+ },
295
+ {
296
+ "type": "website",
297
+ "url": "https://github.com/rust-lang/cc-rs"
298
+ },
299
+ {
300
+ "type": "vcs",
301
+ "url": "https://github.com/rust-lang/cc-rs"
302
+ }
303
+ ]
304
+ },
305
+ {
306
+ "type": "library",
307
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4",
308
+ "author": "Alex Crichton <alex@alexcrichton.com>",
309
+ "name": "cfg-if",
310
+ "version": "1.0.4",
311
+ "description": "A macro to ergonomically define an item depending on a large number of #[cfg] parameters. Structured like an if-else chain, the first matching branch is the item that gets emitted. ",
312
+ "scope": "required",
313
+ "hashes": [
314
+ {
315
+ "alg": "SHA-256",
316
+ "content": "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
317
+ }
318
+ ],
319
+ "licenses": [
320
+ {
321
+ "expression": "MIT OR Apache-2.0"
322
+ }
323
+ ],
324
+ "purl": "pkg:cargo/cfg-if@1.0.4",
325
+ "externalReferences": [
326
+ {
327
+ "type": "vcs",
328
+ "url": "https://github.com/rust-lang/cfg-if"
329
+ }
330
+ ]
331
+ },
332
+ {
333
+ "type": "library",
334
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#find-msvc-tools@0.1.9",
335
+ "name": "find-msvc-tools",
336
+ "version": "0.1.9",
337
+ "description": "Find windows-specific tools, read MSVC versions from the registry and from COM interfaces",
338
+ "scope": "excluded",
339
+ "hashes": [
340
+ {
341
+ "alg": "SHA-256",
342
+ "content": "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582"
343
+ }
344
+ ],
345
+ "licenses": [
346
+ {
347
+ "expression": "MIT OR Apache-2.0"
348
+ }
349
+ ],
350
+ "purl": "pkg:cargo/find-msvc-tools@0.1.9",
351
+ "externalReferences": [
352
+ {
353
+ "type": "documentation",
354
+ "url": "https://docs.rs/find-msvc-tools"
355
+ },
356
+ {
357
+ "type": "vcs",
358
+ "url": "https://github.com/rust-lang/cc-rs"
359
+ }
360
+ ]
361
+ },
362
+ {
363
+ "type": "library",
364
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#foreign-types-shared@0.1.1",
365
+ "author": "Steven Fackler <sfackler@gmail.com>",
366
+ "name": "foreign-types-shared",
367
+ "version": "0.1.1",
368
+ "description": "An internal crate used by foreign-types",
369
+ "scope": "required",
370
+ "hashes": [
371
+ {
372
+ "alg": "SHA-256",
373
+ "content": "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
374
+ }
375
+ ],
376
+ "licenses": [
377
+ {
378
+ "expression": "MIT OR Apache-2.0"
379
+ }
380
+ ],
381
+ "purl": "pkg:cargo/foreign-types-shared@0.1.1",
382
+ "externalReferences": [
383
+ {
384
+ "type": "vcs",
385
+ "url": "https://github.com/sfackler/foreign-types"
386
+ }
387
+ ]
388
+ },
389
+ {
390
+ "type": "library",
391
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#foreign-types@0.3.2",
392
+ "author": "Steven Fackler <sfackler@gmail.com>",
393
+ "name": "foreign-types",
394
+ "version": "0.3.2",
395
+ "description": "A framework for Rust wrappers over C APIs",
396
+ "scope": "required",
397
+ "hashes": [
398
+ {
399
+ "alg": "SHA-256",
400
+ "content": "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
401
+ }
402
+ ],
403
+ "licenses": [
404
+ {
405
+ "expression": "MIT OR Apache-2.0"
406
+ }
407
+ ],
408
+ "purl": "pkg:cargo/foreign-types@0.3.2",
409
+ "externalReferences": [
410
+ {
411
+ "type": "vcs",
412
+ "url": "https://github.com/sfackler/foreign-types"
413
+ }
414
+ ]
415
+ },
416
+ {
417
+ "type": "library",
418
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0",
419
+ "name": "heck",
420
+ "version": "0.5.0",
421
+ "description": "heck is a case conversion library.",
422
+ "scope": "required",
423
+ "hashes": [
424
+ {
425
+ "alg": "SHA-256",
426
+ "content": "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
427
+ }
428
+ ],
429
+ "licenses": [
430
+ {
431
+ "expression": "MIT OR Apache-2.0"
432
+ }
433
+ ],
434
+ "purl": "pkg:cargo/heck@0.5.0",
435
+ "externalReferences": [
436
+ {
437
+ "type": "vcs",
438
+ "url": "https://github.com/withoutboats/heck"
439
+ }
440
+ ]
441
+ },
442
+ {
443
+ "type": "library",
444
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.18",
445
+ "author": "David Tolnay <dtolnay@gmail.com>",
446
+ "name": "itoa",
447
+ "version": "1.0.18",
448
+ "description": "Fast integer primitive to string conversion",
449
+ "scope": "required",
450
+ "hashes": [
451
+ {
452
+ "alg": "SHA-256",
453
+ "content": "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
454
+ }
455
+ ],
456
+ "licenses": [
457
+ {
458
+ "expression": "MIT OR Apache-2.0"
459
+ }
460
+ ],
461
+ "purl": "pkg:cargo/itoa@1.0.18",
462
+ "externalReferences": [
463
+ {
464
+ "type": "documentation",
465
+ "url": "https://docs.rs/itoa"
466
+ },
467
+ {
468
+ "type": "vcs",
469
+ "url": "https://github.com/dtolnay/itoa"
470
+ }
471
+ ]
472
+ },
473
+ {
474
+ "type": "library",
475
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186",
476
+ "author": "The Rust Project Developers",
477
+ "name": "libc",
478
+ "version": "0.2.186",
479
+ "description": "Raw FFI bindings to platform libraries like libc.",
480
+ "scope": "required",
481
+ "hashes": [
482
+ {
483
+ "alg": "SHA-256",
484
+ "content": "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
485
+ }
486
+ ],
487
+ "licenses": [
488
+ {
489
+ "expression": "MIT OR Apache-2.0"
490
+ }
491
+ ],
492
+ "purl": "pkg:cargo/libc@0.2.186",
493
+ "externalReferences": [
494
+ {
495
+ "type": "vcs",
496
+ "url": "https://github.com/rust-lang/libc"
497
+ }
498
+ ]
499
+ },
500
+ {
501
+ "type": "library",
502
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4",
503
+ "author": "Aleksey Kladov <aleksey.kladov@gmail.com>",
504
+ "name": "once_cell",
505
+ "version": "1.21.4",
506
+ "description": "Single assignment cells and lazy values.",
507
+ "scope": "required",
508
+ "hashes": [
509
+ {
510
+ "alg": "SHA-256",
511
+ "content": "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
512
+ }
513
+ ],
514
+ "licenses": [
515
+ {
516
+ "expression": "MIT OR Apache-2.0"
517
+ }
518
+ ],
519
+ "purl": "pkg:cargo/once_cell@1.21.4",
520
+ "externalReferences": [
521
+ {
522
+ "type": "documentation",
523
+ "url": "https://docs.rs/once_cell"
524
+ },
525
+ {
526
+ "type": "vcs",
527
+ "url": "https://github.com/matklad/once_cell"
528
+ }
529
+ ]
530
+ },
531
+ {
532
+ "type": "library",
533
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#openssl-macros@0.1.1",
534
+ "name": "openssl-macros",
535
+ "version": "0.1.1",
536
+ "description": "Internal macros used by the openssl crate.",
537
+ "scope": "required",
538
+ "hashes": [
539
+ {
540
+ "alg": "SHA-256",
541
+ "content": "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
542
+ }
543
+ ],
544
+ "licenses": [
545
+ {
546
+ "expression": "MIT OR Apache-2.0"
547
+ }
548
+ ],
549
+ "purl": "pkg:cargo/openssl-macros@0.1.1"
550
+ },
551
+ {
552
+ "type": "library",
553
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.115",
554
+ "author": "Alex Crichton <alex@alexcrichton.com>, Steven Fackler <sfackler@gmail.com>",
555
+ "name": "openssl-sys",
556
+ "version": "0.9.115",
557
+ "description": "FFI bindings to OpenSSL",
558
+ "scope": "required",
559
+ "hashes": [
560
+ {
561
+ "alg": "SHA-256",
562
+ "content": "158fe5b292746440aa6e7a7e690e55aeb72d41505e2804c23c6973ad0e9c9781"
563
+ }
564
+ ],
565
+ "licenses": [
566
+ {
567
+ "expression": "MIT"
568
+ }
569
+ ],
570
+ "purl": "pkg:cargo/openssl-sys@0.9.115",
571
+ "externalReferences": [
572
+ {
573
+ "type": "other",
574
+ "url": "openssl"
575
+ },
576
+ {
577
+ "type": "vcs",
578
+ "url": "https://github.com/rust-openssl/rust-openssl"
579
+ }
580
+ ]
581
+ },
582
+ {
583
+ "type": "library",
584
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#openssl@0.10.79",
585
+ "author": "Steven Fackler <sfackler@gmail.com>",
586
+ "name": "openssl",
587
+ "version": "0.10.79",
588
+ "description": "OpenSSL bindings",
589
+ "scope": "required",
590
+ "hashes": [
591
+ {
592
+ "alg": "SHA-256",
593
+ "content": "bf0b434746ee2832f4f0baf10137e1cabb18cbe6912c69e2e33263c45250f542"
594
+ }
595
+ ],
596
+ "licenses": [
597
+ {
598
+ "expression": "Apache-2.0"
599
+ }
600
+ ],
601
+ "purl": "pkg:cargo/openssl@0.10.79",
602
+ "externalReferences": [
603
+ {
604
+ "type": "vcs",
605
+ "url": "https://github.com/rust-openssl/rust-openssl"
606
+ }
607
+ ]
608
+ },
609
+ {
610
+ "type": "library",
611
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pem@3.0.6",
612
+ "author": "Jonathan Creekmore <jonathan@thecreekmores.org>",
613
+ "name": "pem",
614
+ "version": "3.0.6",
615
+ "description": "Parse and encode PEM-encoded data.",
616
+ "scope": "required",
617
+ "hashes": [
618
+ {
619
+ "alg": "SHA-256",
620
+ "content": "1d30c53c26bc5b31a98cd02d20f25a7c8567146caf63ed593a9d87b2775291be"
621
+ }
622
+ ],
623
+ "licenses": [
624
+ {
625
+ "expression": "MIT"
626
+ }
627
+ ],
628
+ "purl": "pkg:cargo/pem@3.0.6",
629
+ "externalReferences": [
630
+ {
631
+ "type": "documentation",
632
+ "url": "https://docs.rs/pem/"
633
+ },
634
+ {
635
+ "type": "website",
636
+ "url": "https://github.com/jcreekmore/pem-rs.git"
637
+ },
638
+ {
639
+ "type": "vcs",
640
+ "url": "https://github.com/jcreekmore/pem-rs.git"
641
+ }
642
+ ]
643
+ },
644
+ {
645
+ "type": "library",
646
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pkg-config@0.3.33",
647
+ "author": "Alex Crichton <alex@alexcrichton.com>",
648
+ "name": "pkg-config",
649
+ "version": "0.3.33",
650
+ "description": "A library to run the pkg-config system tool at build time in order to be used in Cargo build scripts. ",
651
+ "scope": "excluded",
652
+ "hashes": [
653
+ {
654
+ "alg": "SHA-256",
655
+ "content": "19f132c84eca552bf34cab8ec81f1c1dcc229b811638f9d283dceabe58c5569e"
656
+ }
657
+ ],
658
+ "licenses": [
659
+ {
660
+ "expression": "MIT OR Apache-2.0"
661
+ }
662
+ ],
663
+ "purl": "pkg:cargo/pkg-config@0.3.33",
664
+ "externalReferences": [
665
+ {
666
+ "type": "documentation",
667
+ "url": "https://docs.rs/pkg-config"
668
+ },
669
+ {
670
+ "type": "vcs",
671
+ "url": "https://github.com/rust-lang/pkg-config-rs"
672
+ }
673
+ ]
674
+ },
675
+ {
676
+ "type": "library",
677
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.13.1",
678
+ "name": "portable-atomic",
679
+ "version": "1.13.1",
680
+ "description": "Portable atomic types including support for 128-bit atomics, atomic float, etc. ",
681
+ "scope": "required",
682
+ "hashes": [
683
+ {
684
+ "alg": "SHA-256",
685
+ "content": "c33a9471896f1c69cecef8d20cbe2f7accd12527ce60845ff44c153bb2a21b49"
686
+ }
687
+ ],
688
+ "licenses": [
689
+ {
690
+ "expression": "Apache-2.0 OR MIT"
691
+ }
692
+ ],
693
+ "purl": "pkg:cargo/portable-atomic@1.13.1",
694
+ "externalReferences": [
695
+ {
696
+ "type": "vcs",
697
+ "url": "https://github.com/taiki-e/portable-atomic"
698
+ }
699
+ ]
700
+ },
701
+ {
702
+ "type": "library",
703
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
704
+ "author": "David Tolnay <dtolnay@gmail.com>, Alex Crichton <alex@alexcrichton.com>",
705
+ "name": "proc-macro2",
706
+ "version": "1.0.106",
707
+ "description": "A substitute implementation of the compiler's `proc_macro` API to decouple token-based libraries from the procedural macro use case.",
708
+ "scope": "required",
709
+ "hashes": [
710
+ {
711
+ "alg": "SHA-256",
712
+ "content": "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
713
+ }
714
+ ],
715
+ "licenses": [
716
+ {
717
+ "expression": "MIT OR Apache-2.0"
718
+ }
719
+ ],
720
+ "purl": "pkg:cargo/proc-macro2@1.0.106",
721
+ "externalReferences": [
722
+ {
723
+ "type": "documentation",
724
+ "url": "https://docs.rs/proc-macro2"
725
+ },
726
+ {
727
+ "type": "vcs",
728
+ "url": "https://github.com/dtolnay/proc-macro2"
729
+ }
730
+ ]
731
+ },
732
+ {
733
+ "type": "library",
734
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.28.3",
735
+ "author": "PyO3 Project and Contributors <https://github.com/PyO3>",
736
+ "name": "pyo3-build-config",
737
+ "version": "0.28.3",
738
+ "description": "Build configuration for the PyO3 ecosystem",
739
+ "scope": "required",
740
+ "hashes": [
741
+ {
742
+ "alg": "SHA-256",
743
+ "content": "e368e7ddfdeb98c9bca7f8383be1648fd84ab466bf2bc015e94008db6d35611e"
744
+ }
745
+ ],
746
+ "licenses": [
747
+ {
748
+ "expression": "MIT OR Apache-2.0"
749
+ }
750
+ ],
751
+ "purl": "pkg:cargo/pyo3-build-config@0.28.3",
752
+ "externalReferences": [
753
+ {
754
+ "type": "website",
755
+ "url": "https://github.com/pyo3/pyo3"
756
+ },
757
+ {
758
+ "type": "vcs",
759
+ "url": "https://github.com/pyo3/pyo3"
760
+ }
761
+ ]
762
+ },
763
+ {
764
+ "type": "library",
765
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-ffi@0.28.3",
766
+ "author": "PyO3 Project and Contributors <https://github.com/PyO3>",
767
+ "name": "pyo3-ffi",
768
+ "version": "0.28.3",
769
+ "description": "Python-API bindings for the PyO3 ecosystem",
770
+ "scope": "required",
771
+ "hashes": [
772
+ {
773
+ "alg": "SHA-256",
774
+ "content": "7f29e10af80b1f7ccaf7f69eace800a03ecd13e883acfacc1e5d0988605f651e"
775
+ }
776
+ ],
777
+ "licenses": [
778
+ {
779
+ "expression": "MIT OR Apache-2.0"
780
+ }
781
+ ],
782
+ "purl": "pkg:cargo/pyo3-ffi@0.28.3",
783
+ "externalReferences": [
784
+ {
785
+ "type": "website",
786
+ "url": "https://github.com/pyo3/pyo3"
787
+ },
788
+ {
789
+ "type": "other",
790
+ "url": "python"
791
+ },
792
+ {
793
+ "type": "vcs",
794
+ "url": "https://github.com/pyo3/pyo3"
795
+ }
796
+ ]
797
+ },
798
+ {
799
+ "type": "library",
800
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros-backend@0.28.3",
801
+ "author": "PyO3 Project and Contributors <https://github.com/PyO3>",
802
+ "name": "pyo3-macros-backend",
803
+ "version": "0.28.3",
804
+ "description": "Code generation for PyO3 package",
805
+ "scope": "required",
806
+ "hashes": [
807
+ {
808
+ "alg": "SHA-256",
809
+ "content": "c4cdc218d835738f81c2338f822078af45b4afdf8b2e33cbb5916f108b813acb"
810
+ }
811
+ ],
812
+ "licenses": [
813
+ {
814
+ "expression": "MIT OR Apache-2.0"
815
+ }
816
+ ],
817
+ "purl": "pkg:cargo/pyo3-macros-backend@0.28.3",
818
+ "externalReferences": [
819
+ {
820
+ "type": "website",
821
+ "url": "https://github.com/pyo3/pyo3"
822
+ },
823
+ {
824
+ "type": "vcs",
825
+ "url": "https://github.com/pyo3/pyo3"
826
+ }
827
+ ]
828
+ },
829
+ {
830
+ "type": "library",
831
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros@0.28.3",
832
+ "author": "PyO3 Project and Contributors <https://github.com/PyO3>",
833
+ "name": "pyo3-macros",
834
+ "version": "0.28.3",
835
+ "description": "Proc macros for PyO3 package",
836
+ "scope": "required",
837
+ "hashes": [
838
+ {
839
+ "alg": "SHA-256",
840
+ "content": "df6e520eff47c45997d2fc7dd8214b25dd1310918bbb2642156ef66a67f29813"
841
+ }
842
+ ],
843
+ "licenses": [
844
+ {
845
+ "expression": "MIT OR Apache-2.0"
846
+ }
847
+ ],
848
+ "purl": "pkg:cargo/pyo3-macros@0.28.3",
849
+ "externalReferences": [
850
+ {
851
+ "type": "website",
852
+ "url": "https://github.com/pyo3/pyo3"
853
+ },
854
+ {
855
+ "type": "vcs",
856
+ "url": "https://github.com/pyo3/pyo3"
857
+ }
858
+ ]
859
+ },
860
+ {
861
+ "type": "library",
862
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3@0.28.3",
863
+ "author": "PyO3 Project and Contributors <https://github.com/PyO3>",
864
+ "name": "pyo3",
865
+ "version": "0.28.3",
866
+ "description": "Bindings to Python interpreter",
867
+ "scope": "required",
868
+ "hashes": [
869
+ {
870
+ "alg": "SHA-256",
871
+ "content": "91fd8e38a3b50ed1167fb981cd6fd60147e091784c427b8f7183a7ee32c31c12"
872
+ }
873
+ ],
874
+ "licenses": [
875
+ {
876
+ "expression": "MIT OR Apache-2.0"
877
+ }
878
+ ],
879
+ "purl": "pkg:cargo/pyo3@0.28.3",
880
+ "externalReferences": [
881
+ {
882
+ "type": "documentation",
883
+ "url": "https://docs.rs/crate/pyo3/"
884
+ },
885
+ {
886
+ "type": "website",
887
+ "url": "https://github.com/pyo3/pyo3"
888
+ },
889
+ {
890
+ "type": "vcs",
891
+ "url": "https://github.com/pyo3/pyo3"
892
+ }
893
+ ]
894
+ },
895
+ {
896
+ "type": "library",
897
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
898
+ "author": "David Tolnay <dtolnay@gmail.com>",
899
+ "name": "quote",
900
+ "version": "1.0.45",
901
+ "description": "Quasi-quoting macro quote!(...)",
902
+ "scope": "required",
903
+ "hashes": [
904
+ {
905
+ "alg": "SHA-256",
906
+ "content": "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
907
+ }
908
+ ],
909
+ "licenses": [
910
+ {
911
+ "expression": "MIT OR Apache-2.0"
912
+ }
913
+ ],
914
+ "purl": "pkg:cargo/quote@1.0.45",
915
+ "externalReferences": [
916
+ {
917
+ "type": "documentation",
918
+ "url": "https://docs.rs/quote/"
919
+ },
920
+ {
921
+ "type": "vcs",
922
+ "url": "https://github.com/dtolnay/quote"
923
+ }
924
+ ]
925
+ },
926
+ {
927
+ "type": "library",
928
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#self_cell@1.2.2",
929
+ "author": "Lukas Bergdoll <lukas.bergdoll@gmail.com>",
930
+ "name": "self_cell",
931
+ "version": "1.2.2",
932
+ "description": "Safe-to-use proc-macro-free self-referential structs in stable Rust.",
933
+ "scope": "required",
934
+ "hashes": [
935
+ {
936
+ "alg": "SHA-256",
937
+ "content": "b12e76d157a900eb52e81bc6e9f3069344290341720e9178cde2407113ac8d89"
938
+ }
939
+ ],
940
+ "licenses": [
941
+ {
942
+ "expression": "Apache-2.0 OR GPL-2.0-only"
943
+ }
944
+ ],
945
+ "purl": "pkg:cargo/self_cell@1.2.2",
946
+ "externalReferences": [
947
+ {
948
+ "type": "documentation",
949
+ "url": "https://docs.rs/self_cell"
950
+ },
951
+ {
952
+ "type": "vcs",
953
+ "url": "https://github.com/Voultapher/self_cell"
954
+ }
955
+ ]
956
+ },
957
+ {
958
+ "type": "library",
959
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0",
960
+ "author": "comex <comexk@gmail.com>, Fenhl <fenhl@fenhl.net>, Adrian Taylor <adetaylor@chromium.org>, Alex Touchet <alextouchet@outlook.com>, Daniel Parks <dp+git@oxidized.org>, Garrett Berg <googberg@gmail.com>",
961
+ "name": "shlex",
962
+ "version": "1.3.0",
963
+ "description": "Split a string into shell words, like Python's shlex.",
964
+ "scope": "excluded",
965
+ "hashes": [
966
+ {
967
+ "alg": "SHA-256",
968
+ "content": "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
969
+ }
970
+ ],
971
+ "licenses": [
972
+ {
973
+ "expression": "MIT OR Apache-2.0"
974
+ }
975
+ ],
976
+ "purl": "pkg:cargo/shlex@1.3.0",
977
+ "externalReferences": [
978
+ {
979
+ "type": "vcs",
980
+ "url": "https://github.com/comex/rust-shlex"
981
+ }
982
+ ]
983
+ },
984
+ {
985
+ "type": "library",
986
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117",
987
+ "author": "David Tolnay <dtolnay@gmail.com>",
988
+ "name": "syn",
989
+ "version": "2.0.117",
990
+ "description": "Parser for Rust source code",
991
+ "scope": "required",
992
+ "hashes": [
993
+ {
994
+ "alg": "SHA-256",
995
+ "content": "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
996
+ }
997
+ ],
998
+ "licenses": [
999
+ {
1000
+ "expression": "MIT OR Apache-2.0"
1001
+ }
1002
+ ],
1003
+ "purl": "pkg:cargo/syn@2.0.117",
1004
+ "externalReferences": [
1005
+ {
1006
+ "type": "documentation",
1007
+ "url": "https://docs.rs/syn"
1008
+ },
1009
+ {
1010
+ "type": "vcs",
1011
+ "url": "https://github.com/dtolnay/syn"
1012
+ }
1013
+ ]
1014
+ },
1015
+ {
1016
+ "type": "library",
1017
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.13.5",
1018
+ "author": "Dan Gohman <sunfish@mozilla.com>",
1019
+ "name": "target-lexicon",
1020
+ "version": "0.13.5",
1021
+ "description": "LLVM target triple types",
1022
+ "scope": "required",
1023
+ "hashes": [
1024
+ {
1025
+ "alg": "SHA-256",
1026
+ "content": "adb6935a6f5c20170eeceb1a3835a49e12e19d792f6dd344ccc76a985ca5a6ca"
1027
+ }
1028
+ ],
1029
+ "licenses": [
1030
+ {
1031
+ "expression": "Apache-2.0 WITH LLVM-exception"
1032
+ }
1033
+ ],
1034
+ "purl": "pkg:cargo/target-lexicon@0.13.5",
1035
+ "externalReferences": [
1036
+ {
1037
+ "type": "documentation",
1038
+ "url": "https://docs.rs/target-lexicon/"
1039
+ },
1040
+ {
1041
+ "type": "vcs",
1042
+ "url": "https://github.com/bytecodealliance/target-lexicon"
1043
+ }
1044
+ ]
1045
+ },
1046
+ {
1047
+ "type": "library",
1048
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24",
1049
+ "author": "David Tolnay <dtolnay@gmail.com>",
1050
+ "name": "unicode-ident",
1051
+ "version": "1.0.24",
1052
+ "description": "Determine whether characters have the XID_Start or XID_Continue properties according to Unicode Standard Annex #31",
1053
+ "scope": "required",
1054
+ "hashes": [
1055
+ {
1056
+ "alg": "SHA-256",
1057
+ "content": "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
1058
+ }
1059
+ ],
1060
+ "licenses": [
1061
+ {
1062
+ "expression": "(MIT OR Apache-2.0) AND Unicode-3.0"
1063
+ }
1064
+ ],
1065
+ "purl": "pkg:cargo/unicode-ident@1.0.24",
1066
+ "externalReferences": [
1067
+ {
1068
+ "type": "documentation",
1069
+ "url": "https://docs.rs/unicode-ident"
1070
+ },
1071
+ {
1072
+ "type": "vcs",
1073
+ "url": "https://github.com/dtolnay/unicode-ident"
1074
+ }
1075
+ ]
1076
+ },
1077
+ {
1078
+ "type": "library",
1079
+ "bom-ref": "registry+https://github.com/rust-lang/crates.io-index#vcpkg@0.2.15",
1080
+ "author": "Jim McGrath <jimmc2@gmail.com>",
1081
+ "name": "vcpkg",
1082
+ "version": "0.2.15",
1083
+ "description": "A library to find native dependencies in a vcpkg tree at build time in order to be used in Cargo build scripts. ",
1084
+ "scope": "excluded",
1085
+ "hashes": [
1086
+ {
1087
+ "alg": "SHA-256",
1088
+ "content": "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
1089
+ }
1090
+ ],
1091
+ "licenses": [
1092
+ {
1093
+ "expression": "MIT OR Apache-2.0"
1094
+ }
1095
+ ],
1096
+ "purl": "pkg:cargo/vcpkg@0.2.15",
1097
+ "externalReferences": [
1098
+ {
1099
+ "type": "documentation",
1100
+ "url": "https://docs.rs/vcpkg"
1101
+ },
1102
+ {
1103
+ "type": "vcs",
1104
+ "url": "https://github.com/mcgoo/vcpkg-rs"
1105
+ }
1106
+ ]
1107
+ }
1108
+ ],
1109
+ "dependencies": [
1110
+ {
1111
+ "ref": "path+file:///Users/runner/work/cryptography/cryptography/wheelhouse/.tmpGH9yn5/cryptography-48.0.1/src/rust#cryptography-rust@0.1.0",
1112
+ "dependsOn": [
1113
+ "registry+https://github.com/rust-lang/crates.io-index#asn1@0.24.1",
1114
+ "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1",
1115
+ "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4",
1116
+ "path+file:///Users/runner/work/cryptography/cryptography/wheelhouse/.tmpGH9yn5/cryptography-48.0.1/src/rust/cryptography-cffi#0.1.0",
1117
+ "path+file:///Users/runner/work/cryptography/cryptography/wheelhouse/.tmpGH9yn5/cryptography-48.0.1/src/rust/cryptography-crypto#0.1.0",
1118
+ "path+file:///Users/runner/work/cryptography/cryptography/wheelhouse/.tmpGH9yn5/cryptography-48.0.1/src/rust/cryptography-keepalive#0.1.0",
1119
+ "path+file:///Users/runner/work/cryptography/cryptography/wheelhouse/.tmpGH9yn5/cryptography-48.0.1/src/rust/cryptography-key-parsing#0.1.0",
1120
+ "path+file:///Users/runner/work/cryptography/cryptography/wheelhouse/.tmpGH9yn5/cryptography-48.0.1/src/rust/cryptography-openssl#0.1.0",
1121
+ "path+file:///Users/runner/work/cryptography/cryptography/wheelhouse/.tmpGH9yn5/cryptography-48.0.1/src/rust/cryptography-x509#0.1.0",
1122
+ "path+file:///Users/runner/work/cryptography/cryptography/wheelhouse/.tmpGH9yn5/cryptography-48.0.1/src/rust/cryptography-x509-verification#0.1.0",
1123
+ "registry+https://github.com/rust-lang/crates.io-index#foreign-types-shared@0.1.1",
1124
+ "registry+https://github.com/rust-lang/crates.io-index#openssl@0.10.79",
1125
+ "registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.115",
1126
+ "registry+https://github.com/rust-lang/crates.io-index#pem@3.0.6",
1127
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3@0.28.3",
1128
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.28.3",
1129
+ "registry+https://github.com/rust-lang/crates.io-index#self_cell@1.2.2"
1130
+ ]
1131
+ },
1132
+ {
1133
+ "ref": "path+file:///Users/runner/work/cryptography/cryptography/wheelhouse/.tmpGH9yn5/cryptography-48.0.1/src/rust/cryptography-cffi#0.1.0",
1134
+ "dependsOn": [
1135
+ "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.61",
1136
+ "registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.115",
1137
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3@0.28.3"
1138
+ ]
1139
+ },
1140
+ {
1141
+ "ref": "path+file:///Users/runner/work/cryptography/cryptography/wheelhouse/.tmpGH9yn5/cryptography-48.0.1/src/rust/cryptography-crypto#0.1.0",
1142
+ "dependsOn": [
1143
+ "registry+https://github.com/rust-lang/crates.io-index#openssl@0.10.79"
1144
+ ]
1145
+ },
1146
+ {
1147
+ "ref": "path+file:///Users/runner/work/cryptography/cryptography/wheelhouse/.tmpGH9yn5/cryptography-48.0.1/src/rust/cryptography-keepalive#0.1.0",
1148
+ "dependsOn": [
1149
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3@0.28.3"
1150
+ ]
1151
+ },
1152
+ {
1153
+ "ref": "path+file:///Users/runner/work/cryptography/cryptography/wheelhouse/.tmpGH9yn5/cryptography-48.0.1/src/rust/cryptography-key-parsing#0.1.0",
1154
+ "dependsOn": [
1155
+ "registry+https://github.com/rust-lang/crates.io-index#asn1@0.24.1",
1156
+ "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4",
1157
+ "path+file:///Users/runner/work/cryptography/cryptography/wheelhouse/.tmpGH9yn5/cryptography-48.0.1/src/rust/cryptography-crypto#0.1.0",
1158
+ "path+file:///Users/runner/work/cryptography/cryptography/wheelhouse/.tmpGH9yn5/cryptography-48.0.1/src/rust/cryptography-openssl#0.1.0",
1159
+ "path+file:///Users/runner/work/cryptography/cryptography/wheelhouse/.tmpGH9yn5/cryptography-48.0.1/src/rust/cryptography-x509#0.1.0",
1160
+ "registry+https://github.com/rust-lang/crates.io-index#openssl@0.10.79",
1161
+ "registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.115",
1162
+ "registry+https://github.com/rust-lang/crates.io-index#pem@3.0.6"
1163
+ ]
1164
+ },
1165
+ {
1166
+ "ref": "path+file:///Users/runner/work/cryptography/cryptography/wheelhouse/.tmpGH9yn5/cryptography-48.0.1/src/rust/cryptography-openssl#0.1.0",
1167
+ "dependsOn": [
1168
+ "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4",
1169
+ "registry+https://github.com/rust-lang/crates.io-index#foreign-types@0.3.2",
1170
+ "registry+https://github.com/rust-lang/crates.io-index#foreign-types-shared@0.1.1",
1171
+ "registry+https://github.com/rust-lang/crates.io-index#openssl@0.10.79",
1172
+ "registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.115"
1173
+ ]
1174
+ },
1175
+ {
1176
+ "ref": "path+file:///Users/runner/work/cryptography/cryptography/wheelhouse/.tmpGH9yn5/cryptography-48.0.1/src/rust/cryptography-x509#0.1.0",
1177
+ "dependsOn": [
1178
+ "registry+https://github.com/rust-lang/crates.io-index#asn1@0.24.1"
1179
+ ]
1180
+ },
1181
+ {
1182
+ "ref": "path+file:///Users/runner/work/cryptography/cryptography/wheelhouse/.tmpGH9yn5/cryptography-48.0.1/src/rust/cryptography-x509-verification#0.1.0",
1183
+ "dependsOn": [
1184
+ "registry+https://github.com/rust-lang/crates.io-index#asn1@0.24.1",
1185
+ "path+file:///Users/runner/work/cryptography/cryptography/wheelhouse/.tmpGH9yn5/cryptography-48.0.1/src/rust/cryptography-x509#0.1.0"
1186
+ ]
1187
+ },
1188
+ {
1189
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#asn1@0.24.1",
1190
+ "dependsOn": [
1191
+ "registry+https://github.com/rust-lang/crates.io-index#asn1_derive@0.24.1",
1192
+ "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.18"
1193
+ ]
1194
+ },
1195
+ {
1196
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#asn1_derive@0.24.1",
1197
+ "dependsOn": [
1198
+ "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
1199
+ "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
1200
+ "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117"
1201
+ ]
1202
+ },
1203
+ {
1204
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1"
1205
+ },
1206
+ {
1207
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.11.1"
1208
+ },
1209
+ {
1210
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.61",
1211
+ "dependsOn": [
1212
+ "registry+https://github.com/rust-lang/crates.io-index#find-msvc-tools@0.1.9",
1213
+ "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0"
1214
+ ]
1215
+ },
1216
+ {
1217
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4"
1218
+ },
1219
+ {
1220
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#find-msvc-tools@0.1.9"
1221
+ },
1222
+ {
1223
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#foreign-types-shared@0.1.1"
1224
+ },
1225
+ {
1226
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#foreign-types@0.3.2",
1227
+ "dependsOn": [
1228
+ "registry+https://github.com/rust-lang/crates.io-index#foreign-types-shared@0.1.1"
1229
+ ]
1230
+ },
1231
+ {
1232
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0"
1233
+ },
1234
+ {
1235
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#itoa@1.0.18"
1236
+ },
1237
+ {
1238
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186"
1239
+ },
1240
+ {
1241
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4"
1242
+ },
1243
+ {
1244
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#openssl-macros@0.1.1",
1245
+ "dependsOn": [
1246
+ "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
1247
+ "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
1248
+ "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117"
1249
+ ]
1250
+ },
1251
+ {
1252
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.115",
1253
+ "dependsOn": [
1254
+ "registry+https://github.com/rust-lang/crates.io-index#cc@1.2.61",
1255
+ "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186",
1256
+ "registry+https://github.com/rust-lang/crates.io-index#pkg-config@0.3.33",
1257
+ "registry+https://github.com/rust-lang/crates.io-index#vcpkg@0.2.15"
1258
+ ]
1259
+ },
1260
+ {
1261
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#openssl@0.10.79",
1262
+ "dependsOn": [
1263
+ "registry+https://github.com/rust-lang/crates.io-index#bitflags@2.11.1",
1264
+ "registry+https://github.com/rust-lang/crates.io-index#cfg-if@1.0.4",
1265
+ "registry+https://github.com/rust-lang/crates.io-index#foreign-types@0.3.2",
1266
+ "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186",
1267
+ "registry+https://github.com/rust-lang/crates.io-index#openssl-macros@0.1.1",
1268
+ "registry+https://github.com/rust-lang/crates.io-index#openssl-sys@0.9.115"
1269
+ ]
1270
+ },
1271
+ {
1272
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#pem@3.0.6",
1273
+ "dependsOn": [
1274
+ "registry+https://github.com/rust-lang/crates.io-index#base64@0.22.1"
1275
+ ]
1276
+ },
1277
+ {
1278
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#pkg-config@0.3.33"
1279
+ },
1280
+ {
1281
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.13.1"
1282
+ },
1283
+ {
1284
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
1285
+ "dependsOn": [
1286
+ "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24"
1287
+ ]
1288
+ },
1289
+ {
1290
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.28.3",
1291
+ "dependsOn": [
1292
+ "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.13.5"
1293
+ ]
1294
+ },
1295
+ {
1296
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-ffi@0.28.3",
1297
+ "dependsOn": [
1298
+ "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186",
1299
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.28.3"
1300
+ ]
1301
+ },
1302
+ {
1303
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros-backend@0.28.3",
1304
+ "dependsOn": [
1305
+ "registry+https://github.com/rust-lang/crates.io-index#heck@0.5.0",
1306
+ "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
1307
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.28.3",
1308
+ "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
1309
+ "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117"
1310
+ ]
1311
+ },
1312
+ {
1313
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros@0.28.3",
1314
+ "dependsOn": [
1315
+ "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
1316
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros-backend@0.28.3",
1317
+ "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
1318
+ "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117"
1319
+ ]
1320
+ },
1321
+ {
1322
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#pyo3@0.28.3",
1323
+ "dependsOn": [
1324
+ "registry+https://github.com/rust-lang/crates.io-index#libc@0.2.186",
1325
+ "registry+https://github.com/rust-lang/crates.io-index#once_cell@1.21.4",
1326
+ "registry+https://github.com/rust-lang/crates.io-index#portable-atomic@1.13.1",
1327
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3-build-config@0.28.3",
1328
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3-ffi@0.28.3",
1329
+ "registry+https://github.com/rust-lang/crates.io-index#pyo3-macros@0.28.3"
1330
+ ]
1331
+ },
1332
+ {
1333
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
1334
+ "dependsOn": [
1335
+ "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106"
1336
+ ]
1337
+ },
1338
+ {
1339
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#self_cell@1.2.2"
1340
+ },
1341
+ {
1342
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#shlex@1.3.0"
1343
+ },
1344
+ {
1345
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#syn@2.0.117",
1346
+ "dependsOn": [
1347
+ "registry+https://github.com/rust-lang/crates.io-index#proc-macro2@1.0.106",
1348
+ "registry+https://github.com/rust-lang/crates.io-index#quote@1.0.45",
1349
+ "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24"
1350
+ ]
1351
+ },
1352
+ {
1353
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#target-lexicon@0.13.5"
1354
+ },
1355
+ {
1356
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#unicode-ident@1.0.24"
1357
+ },
1358
+ {
1359
+ "ref": "registry+https://github.com/rust-lang/crates.io-index#vcpkg@0.2.15"
1360
+ }
1361
+ ]
1362
+ }