@sentry/wizard 3.42.0 → 4.0.0

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 (339) hide show
  1. package/.node-cache/node-v22.14.0-darwin-arm64 +0 -0
  2. package/.node-cache/node-v22.14.0-darwin-x64 +0 -0
  3. package/.node-cache/node-v22.14.0-linux-arm64 +0 -0
  4. package/.node-cache/node-v22.14.0-linux-x64 +0 -0
  5. package/.node-cache/node-v22.14.0-win-x64.exe +0 -0
  6. package/CHANGELOG.md +30 -0
  7. package/COPYING +3575 -0
  8. package/bin.ts +85 -80
  9. package/dist/bin.js +44 -35
  10. package/dist/bin.js.map +1 -1
  11. package/dist/e2e-tests/jest.config.js +1 -1
  12. package/dist/e2e-tests/jest.config.js.map +1 -1
  13. package/dist/e2e-tests/tests/flutter.test.js +62 -147
  14. package/dist/e2e-tests/tests/flutter.test.js.map +1 -1
  15. package/dist/e2e-tests/tests/nextjs.test.js +77 -175
  16. package/dist/e2e-tests/tests/nextjs.test.js.map +1 -1
  17. package/dist/e2e-tests/tests/nuxt-3.test.js +61 -162
  18. package/dist/e2e-tests/tests/nuxt-3.test.js.map +1 -1
  19. package/dist/e2e-tests/tests/nuxt-4.test.js +62 -163
  20. package/dist/e2e-tests/tests/nuxt-4.test.js.map +1 -1
  21. package/dist/e2e-tests/tests/remix.test.js +147 -189
  22. package/dist/e2e-tests/tests/remix.test.js.map +1 -1
  23. package/dist/e2e-tests/tests/sveltekit.test.js +133 -187
  24. package/dist/e2e-tests/tests/sveltekit.test.js.map +1 -1
  25. package/dist/e2e-tests/utils/index.d.ts +1 -1
  26. package/dist/e2e-tests/utils/index.js +113 -195
  27. package/dist/e2e-tests/utils/index.js.map +1 -1
  28. package/dist/lib/Constants.js +5 -5
  29. package/dist/lib/Constants.js.map +1 -1
  30. package/dist/lib/Helper/BottomBar.d.ts +1 -1
  31. package/dist/lib/Helper/BottomBar.js +14 -15
  32. package/dist/lib/Helper/BottomBar.js.map +1 -1
  33. package/dist/lib/Helper/Env.js +5 -2
  34. package/dist/lib/Helper/Env.js.map +1 -1
  35. package/dist/lib/Helper/File.js +14 -27
  36. package/dist/lib/Helper/File.js.map +1 -1
  37. package/dist/lib/Helper/Git.js +24 -59
  38. package/dist/lib/Helper/Git.js.map +1 -1
  39. package/dist/lib/Helper/Logging.js +2 -2
  40. package/dist/lib/Helper/Logging.js.map +1 -1
  41. package/dist/lib/Helper/MergeConfig.js +4 -4
  42. package/dist/lib/Helper/MergeConfig.js.map +1 -1
  43. package/dist/lib/Helper/Package.d.ts +4 -1
  44. package/dist/lib/Helper/Package.js +12 -38
  45. package/dist/lib/Helper/Package.js.map +1 -1
  46. package/dist/lib/Helper/SentryCli.js +77 -149
  47. package/dist/lib/Helper/SentryCli.js.map +1 -1
  48. package/dist/lib/Helper/Wizard.js +29 -124
  49. package/dist/lib/Helper/Wizard.js.map +1 -1
  50. package/dist/lib/Helper/__tests__/File.js +4 -4
  51. package/dist/lib/Helper/__tests__/File.js.map +1 -1
  52. package/dist/lib/Helper/__tests__/MergeConfig.js +24 -24
  53. package/dist/lib/Helper/__tests__/MergeConfig.js.map +1 -1
  54. package/dist/lib/Helper/__tests__/SentryCli.js +33 -23
  55. package/dist/lib/Helper/__tests__/SentryCli.js.map +1 -1
  56. package/dist/lib/Setup.js +23 -85
  57. package/dist/lib/Setup.js.map +1 -1
  58. package/dist/lib/Steps/BaseStep.js +8 -8
  59. package/dist/lib/Steps/BaseStep.js.map +1 -1
  60. package/dist/lib/Steps/ChooseIntegration.js +80 -125
  61. package/dist/lib/Steps/ChooseIntegration.js.map +1 -1
  62. package/dist/lib/Steps/ConfigureProject.js +6 -66
  63. package/dist/lib/Steps/ConfigureProject.js.map +1 -1
  64. package/dist/lib/Steps/Initial.js +16 -104
  65. package/dist/lib/Steps/Initial.js.map +1 -1
  66. package/dist/lib/Steps/Integrations/BaseIntegration.js +24 -118
  67. package/dist/lib/Steps/Integrations/BaseIntegration.js.map +1 -1
  68. package/dist/lib/Steps/Integrations/Cordova.js +95 -183
  69. package/dist/lib/Steps/Integrations/Cordova.js.map +1 -1
  70. package/dist/lib/Steps/Integrations/Electron.js +87 -145
  71. package/dist/lib/Steps/Integrations/Electron.js.map +1 -1
  72. package/dist/lib/Steps/Integrations/MobileProject.js +40 -148
  73. package/dist/lib/Steps/Integrations/MobileProject.js.map +1 -1
  74. package/dist/lib/Steps/OpenSentry.js +63 -126
  75. package/dist/lib/Steps/OpenSentry.js.map +1 -1
  76. package/dist/lib/Steps/PromptForParameters.js +110 -206
  77. package/dist/lib/Steps/PromptForParameters.js.map +1 -1
  78. package/dist/lib/Steps/Result.js +19 -79
  79. package/dist/lib/Steps/Result.js.map +1 -1
  80. package/dist/lib/Steps/SentryProjectSelector.js +57 -148
  81. package/dist/lib/Steps/SentryProjectSelector.js.map +1 -1
  82. package/dist/lib/Steps/ShouldConfigure.js +6 -66
  83. package/dist/lib/Steps/ShouldConfigure.js.map +1 -1
  84. package/dist/lib/Steps/WaitForSentry.js +43 -120
  85. package/dist/lib/Steps/WaitForSentry.js.map +1 -1
  86. package/dist/lib/Steps/Welcome.js +17 -76
  87. package/dist/lib/Steps/Welcome.js.map +1 -1
  88. package/dist/lib/__tests__/Env.js +3 -3
  89. package/dist/lib/__tests__/Env.js.map +1 -1
  90. package/dist/src/android/android-wizard.js +100 -176
  91. package/dist/src/android/android-wizard.js.map +1 -1
  92. package/dist/src/android/code-tools.js +24 -33
  93. package/dist/src/android/code-tools.js.map +1 -1
  94. package/dist/src/android/gradle.js +106 -165
  95. package/dist/src/android/gradle.js.map +1 -1
  96. package/dist/src/android/manifest.js +26 -27
  97. package/dist/src/android/manifest.js.map +1 -1
  98. package/dist/src/android/templates.js +76 -23
  99. package/dist/src/android/templates.js.map +1 -1
  100. package/dist/src/apple/apple-wizard.js +129 -225
  101. package/dist/src/apple/apple-wizard.js.map +1 -1
  102. package/dist/src/apple/cocoapod.js +47 -109
  103. package/dist/src/apple/cocoapod.js.map +1 -1
  104. package/dist/src/apple/code-tools.js +32 -35
  105. package/dist/src/apple/code-tools.js.map +1 -1
  106. package/dist/src/apple/fastlane.js +51 -97
  107. package/dist/src/apple/fastlane.js.map +1 -1
  108. package/dist/src/apple/templates.js +41 -5
  109. package/dist/src/apple/templates.js.map +1 -1
  110. package/dist/src/apple/xcode-manager.d.ts +2 -2
  111. package/dist/src/apple/xcode-manager.js +93 -108
  112. package/dist/src/apple/xcode-manager.js.map +1 -1
  113. package/dist/src/flutter/code-tools.js +79 -127
  114. package/dist/src/flutter/code-tools.js.map +1 -1
  115. package/dist/src/flutter/flutter-wizard.js +75 -136
  116. package/dist/src/flutter/flutter-wizard.js.map +1 -1
  117. package/dist/src/flutter/templates.js +48 -12
  118. package/dist/src/flutter/templates.js.map +1 -1
  119. package/dist/src/nextjs/nextjs-wizard.js +527 -805
  120. package/dist/src/nextjs/nextjs-wizard.js.map +1 -1
  121. package/dist/src/nextjs/templates.js +380 -40
  122. package/dist/src/nextjs/templates.js.map +1 -1
  123. package/dist/src/nextjs/utils.js +5 -5
  124. package/dist/src/nextjs/utils.js.map +1 -1
  125. package/dist/src/nuxt/nuxt-wizard.js +91 -188
  126. package/dist/src/nuxt/nuxt-wizard.js.map +1 -1
  127. package/dist/src/nuxt/sdk-example.js +68 -137
  128. package/dist/src/nuxt/sdk-example.js.map +1 -1
  129. package/dist/src/nuxt/sdk-setup.d.ts +4 -4
  130. package/dist/src/nuxt/sdk-setup.js +180 -336
  131. package/dist/src/nuxt/sdk-setup.js.map +1 -1
  132. package/dist/src/nuxt/templates.js +195 -18
  133. package/dist/src/nuxt/templates.js.map +1 -1
  134. package/dist/src/nuxt/utils.js +29 -76
  135. package/dist/src/nuxt/utils.js.map +1 -1
  136. package/dist/src/react-native/expo-env-file.js +41 -94
  137. package/dist/src/react-native/expo-env-file.js.map +1 -1
  138. package/dist/src/react-native/expo-metro.d.ts +1 -1
  139. package/dist/src/react-native/expo-metro.js +75 -130
  140. package/dist/src/react-native/expo-metro.js.map +1 -1
  141. package/dist/src/react-native/expo.js +61 -114
  142. package/dist/src/react-native/expo.js.map +1 -1
  143. package/dist/src/react-native/git.js +23 -56
  144. package/dist/src/react-native/git.js.map +1 -1
  145. package/dist/src/react-native/glob.js +3 -3
  146. package/dist/src/react-native/glob.js.map +1 -1
  147. package/dist/src/react-native/gradle.js +4 -4
  148. package/dist/src/react-native/gradle.js.map +1 -1
  149. package/dist/src/react-native/javascript.js +51 -95
  150. package/dist/src/react-native/javascript.js.map +1 -1
  151. package/dist/src/react-native/metro.js +176 -296
  152. package/dist/src/react-native/metro.js.map +1 -1
  153. package/dist/src/react-native/react-native-wizard.js +267 -418
  154. package/dist/src/react-native/react-native-wizard.js.map +1 -1
  155. package/dist/src/react-native/uninstall.js +37 -80
  156. package/dist/src/react-native/uninstall.js.map +1 -1
  157. package/dist/src/react-native/xcode.js +57 -55
  158. package/dist/src/react-native/xcode.js.map +1 -1
  159. package/dist/src/remix/codemods/express-server.js +27 -82
  160. package/dist/src/remix/codemods/express-server.js.map +1 -1
  161. package/dist/src/remix/codemods/handle-error.js +28 -31
  162. package/dist/src/remix/codemods/handle-error.js.map +1 -1
  163. package/dist/src/remix/codemods/root-common.js +11 -11
  164. package/dist/src/remix/codemods/root-common.js.map +1 -1
  165. package/dist/src/remix/codemods/root-v1.js +17 -67
  166. package/dist/src/remix/codemods/root-v1.js.map +1 -1
  167. package/dist/src/remix/codemods/root-v2.js +89 -140
  168. package/dist/src/remix/codemods/root-v2.js.map +1 -1
  169. package/dist/src/remix/remix-wizard.js +181 -343
  170. package/dist/src/remix/remix-wizard.js.map +1 -1
  171. package/dist/src/remix/sdk-example.js +84 -66
  172. package/dist/src/remix/sdk-example.js.map +1 -1
  173. package/dist/src/remix/sdk-setup.js +161 -293
  174. package/dist/src/remix/sdk-setup.js.map +1 -1
  175. package/dist/src/remix/templates.js +10 -2
  176. package/dist/src/remix/templates.js.map +1 -1
  177. package/dist/src/remix/utils.js +13 -14
  178. package/dist/src/remix/utils.js.map +1 -1
  179. package/dist/src/run.js +106 -178
  180. package/dist/src/run.js.map +1 -1
  181. package/dist/src/sourcemaps/sourcemaps-wizard.js +248 -372
  182. package/dist/src/sourcemaps/sourcemaps-wizard.js.map +1 -1
  183. package/dist/src/sourcemaps/tools/angular.js +32 -66
  184. package/dist/src/sourcemaps/tools/angular.js.map +1 -1
  185. package/dist/src/sourcemaps/tools/create-react-app.js +14 -59
  186. package/dist/src/sourcemaps/tools/create-react-app.js.map +1 -1
  187. package/dist/src/sourcemaps/tools/esbuild.js +34 -77
  188. package/dist/src/sourcemaps/tools/esbuild.js.map +1 -1
  189. package/dist/src/sourcemaps/tools/nextjs.d.ts +2 -2
  190. package/dist/src/sourcemaps/tools/nextjs.js +75 -102
  191. package/dist/src/sourcemaps/tools/nextjs.js.map +1 -1
  192. package/dist/src/sourcemaps/tools/remix.js +53 -93
  193. package/dist/src/sourcemaps/tools/remix.js.map +1 -1
  194. package/dist/src/sourcemaps/tools/rollup.js +35 -76
  195. package/dist/src/sourcemaps/tools/rollup.js.map +1 -1
  196. package/dist/src/sourcemaps/tools/sentry-cli.js +157 -289
  197. package/dist/src/sourcemaps/tools/sentry-cli.js.map +1 -1
  198. package/dist/src/sourcemaps/tools/tsc.js +68 -134
  199. package/dist/src/sourcemaps/tools/tsc.js.map +1 -1
  200. package/dist/src/sourcemaps/tools/vite.js +111 -196
  201. package/dist/src/sourcemaps/tools/vite.js.map +1 -1
  202. package/dist/src/sourcemaps/tools/webpack.d.ts +1 -1
  203. package/dist/src/sourcemaps/tools/webpack.js +158 -260
  204. package/dist/src/sourcemaps/tools/webpack.js.map +1 -1
  205. package/dist/src/sourcemaps/utils/detect-tool.js +9 -54
  206. package/dist/src/sourcemaps/utils/detect-tool.js.map +1 -1
  207. package/dist/src/sourcemaps/utils/other-wizards.js +77 -144
  208. package/dist/src/sourcemaps/utils/other-wizards.js.map +1 -1
  209. package/dist/src/sourcemaps/utils/sdk-version.js +112 -191
  210. package/dist/src/sourcemaps/utils/sdk-version.js.map +1 -1
  211. package/dist/src/sveltekit/sdk-example.js +20 -70
  212. package/dist/src/sveltekit/sdk-example.js.map +1 -1
  213. package/dist/src/sveltekit/sdk-setup.js +250 -411
  214. package/dist/src/sveltekit/sdk-setup.js.map +1 -1
  215. package/dist/src/sveltekit/sveltekit-wizard.js +107 -191
  216. package/dist/src/sveltekit/sveltekit-wizard.js.map +1 -1
  217. package/dist/src/sveltekit/templates.js +147 -13
  218. package/dist/src/sveltekit/templates.js.map +1 -1
  219. package/dist/src/sveltekit/utils.js +3 -3
  220. package/dist/src/sveltekit/utils.js.map +1 -1
  221. package/dist/src/telemetry.d.ts +2 -2
  222. package/dist/src/telemetry.js +58 -108
  223. package/dist/src/telemetry.js.map +1 -1
  224. package/dist/src/utils/ast-utils.js +39 -54
  225. package/dist/src/utils/ast-utils.js.map +1 -1
  226. package/dist/src/utils/bash.js +28 -75
  227. package/dist/src/utils/bash.js.map +1 -1
  228. package/dist/src/utils/clack-utils.d.ts +3 -7
  229. package/dist/src/utils/clack-utils.js +688 -1083
  230. package/dist/src/utils/clack-utils.js.map +1 -1
  231. package/dist/src/utils/debug.js +6 -10
  232. package/dist/src/utils/debug.js.map +1 -1
  233. package/dist/src/utils/package-json.js +5 -6
  234. package/dist/src/utils/package-json.js.map +1 -1
  235. package/dist/src/utils/package-manager.js +65 -139
  236. package/dist/src/utils/package-manager.js.map +1 -1
  237. package/dist/src/utils/release-registry.js +12 -59
  238. package/dist/src/utils/release-registry.js.map +1 -1
  239. package/dist/src/utils/semver.js +3 -4
  240. package/dist/src/utils/semver.js.map +1 -1
  241. package/dist/src/utils/sentrycli-utils.js +4 -4
  242. package/dist/src/utils/sentrycli-utils.js.map +1 -1
  243. package/dist/src/utils/url.js +5 -6
  244. package/dist/src/utils/url.js.map +1 -1
  245. package/dist/test/android/code-tools.test.js +18 -18
  246. package/dist/test/android/code-tools.test.js.map +1 -1
  247. package/dist/test/apple/cocoapod.test.js +154 -299
  248. package/dist/test/apple/cocoapod.test.js.map +1 -1
  249. package/dist/test/apple/code-tools.test.js +375 -263
  250. package/dist/test/apple/code-tools.test.js.map +1 -1
  251. package/dist/test/apple/fastfile.test.js +319 -271
  252. package/dist/test/apple/fastfile.test.js.map +1 -1
  253. package/dist/test/apple/templates.test.js +114 -30
  254. package/dist/test/apple/templates.test.js.map +1 -1
  255. package/dist/test/apple/xcode-manager.test.js +230 -234
  256. package/dist/test/apple/xcode-manager.test.js.map +1 -1
  257. package/dist/test/flutter/code-tools.test.js +119 -48
  258. package/dist/test/flutter/code-tools.test.js.map +1 -1
  259. package/dist/test/flutter/templates.test.js +63 -20
  260. package/dist/test/flutter/templates.test.js.map +1 -1
  261. package/dist/test/nextjs/templates.test.js +332 -43
  262. package/dist/test/nextjs/templates.test.js.map +1 -1
  263. package/dist/test/nuxt/templates.test.js +161 -33
  264. package/dist/test/nuxt/templates.test.js.map +1 -1
  265. package/dist/test/react-native/expo-metro.test.js +61 -15
  266. package/dist/test/react-native/expo-metro.test.js.map +1 -1
  267. package/dist/test/react-native/expo.test.js +37 -17
  268. package/dist/test/react-native/expo.test.js.map +1 -1
  269. package/dist/test/react-native/gradle.test.js +260 -28
  270. package/dist/test/react-native/gradle.test.js.map +1 -1
  271. package/dist/test/react-native/javascript.test.js +85 -19
  272. package/dist/test/react-native/javascript.test.js.map +1 -1
  273. package/dist/test/react-native/metro.test.js +261 -187
  274. package/dist/test/react-native/metro.test.js.map +1 -1
  275. package/dist/test/react-native/xcode.test.js +243 -62
  276. package/dist/test/react-native/xcode.test.js.map +1 -1
  277. package/dist/test/remix/client-entry.test.js +81 -21
  278. package/dist/test/remix/client-entry.test.js.map +1 -1
  279. package/dist/test/remix/server-instrumentation.test.js +21 -8
  280. package/dist/test/remix/server-instrumentation.test.js.map +1 -1
  281. package/dist/test/sourcemaps/tools/sentry-cli.test.js +20 -72
  282. package/dist/test/sourcemaps/tools/sentry-cli.test.js.map +1 -1
  283. package/dist/test/sourcemaps/tools/tsc.test.js +142 -68
  284. package/dist/test/sourcemaps/tools/tsc.test.js.map +1 -1
  285. package/dist/test/sourcemaps/tools/vite.test.js +106 -75
  286. package/dist/test/sourcemaps/tools/vite.test.js.map +1 -1
  287. package/dist/test/sourcemaps/tools/webpack.test.js +226 -102
  288. package/dist/test/sourcemaps/tools/webpack.test.js.map +1 -1
  289. package/dist/test/sveltekit/templates.test.js +117 -18
  290. package/dist/test/sveltekit/templates.test.js.map +1 -1
  291. package/dist/test/utils/ast-utils.test.js +99 -58
  292. package/dist/test/utils/ast-utils.test.js.map +1 -1
  293. package/dist/test/utils/clack-utils.test.js +142 -247
  294. package/dist/test/utils/clack-utils.test.js.map +1 -1
  295. package/e2e-tests/package.json +1 -1
  296. package/e2e-tests/tests/flutter.test.ts +20 -20
  297. package/e2e-tests/tests/nextjs.test.ts +2 -2
  298. package/e2e-tests/tests/nuxt-3.test.ts +4 -4
  299. package/e2e-tests/tests/nuxt-4.test.ts +3 -3
  300. package/e2e-tests/tests/remix.test.ts +3 -3
  301. package/e2e-tests/tests/sveltekit.test.ts +3 -3
  302. package/e2e-tests/utils/index.ts +33 -15
  303. package/lib/Helper/BottomBar.ts +1 -1
  304. package/lib/Helper/Env.ts +1 -1
  305. package/lib/Helper/Package.ts +12 -10
  306. package/lib/Helper/SentryCli.ts +18 -27
  307. package/lib/Helper/Wizard.ts +1 -2
  308. package/lib/Setup.ts +4 -5
  309. package/lib/Steps/ChooseIntegration.ts +40 -8
  310. package/lib/Steps/Initial.ts +17 -26
  311. package/lib/Steps/Integrations/BaseIntegration.ts +2 -8
  312. package/lib/Steps/Integrations/Cordova.ts +9 -15
  313. package/lib/Steps/Integrations/Electron.ts +23 -20
  314. package/lib/Steps/Integrations/MobileProject.ts +18 -15
  315. package/lib/Steps/OpenSentry.ts +12 -7
  316. package/lib/Steps/PromptForParameters.ts +12 -19
  317. package/lib/Steps/SentryProjectSelector.ts +30 -29
  318. package/lib/Steps/WaitForSentry.ts +29 -23
  319. package/package.json +12 -8
  320. package/src/apple/xcode-manager.ts +10 -10
  321. package/src/nextjs/templates.ts +2 -6
  322. package/src/nuxt/sdk-setup.ts +21 -18
  323. package/src/react-native/expo-metro.ts +2 -2
  324. package/src/react-native/react-native-wizard.ts +1 -2
  325. package/src/react-native/uninstall.ts +1 -2
  326. package/src/react-native/xcode.ts +1 -1
  327. package/src/run.ts +12 -5
  328. package/src/sourcemaps/tools/nextjs.ts +2 -5
  329. package/src/sourcemaps/tools/webpack.ts +3 -3
  330. package/src/telemetry.ts +27 -7
  331. package/src/utils/clack-utils.ts +50 -47
  332. package/test/apple/cocoapod.test.ts +4 -0
  333. package/test/apple/fastfile.test.ts +12 -7
  334. package/test/apple/xcode-manager.test.ts +13 -11
  335. package/test/nextjs/templates.test.ts +0 -12
  336. package/test/utils/clack-utils.test.ts +40 -50
  337. package/types/read-env.d.ts +3 -0
  338. package/types/xcode.d.ts +1 -0
  339. package/dist/package.json +0 -128
package/COPYING ADDED
@@ -0,0 +1,3575 @@
1
+ Software Licensing Summary
2
+ ==========================
3
+
4
+ 310 distinct software components
5
+ 1 lack a known software license
6
+ 0 have unknown license expressions
7
+ 12 distinct SPDX licenses
8
+ 0 components in the public domain
9
+ 9 have copyleft licenses
10
+
11
+ Count OSI FSF free Copyleft SPDX License
12
+ 1 [x] [ ] [ ] BSD Zero Clause License
13
+ 227 [x] [x] [ ] Apache License 2.0
14
+ 2 [x] [x] [ ] Apache License 2.0 WITH LLVM-exception
15
+ 2 [x] [x] [ ] BSD 2-Clause "Simplified" License
16
+ 4 [x] [x] [ ] BSD 3-Clause "New" or "Revised" License
17
+ 1 [x] [x] [ ] Boost Software License 1.0
18
+ 2 [ ] [ ] [ ] Blue Oak Model License 1.0.0
19
+ 8 [x] [x] [ ] ISC License
20
+ 262 [x] [x] [ ] MIT License
21
+ 9 [x] [x] [x] Mozilla Public License 2.0
22
+ 6 [x] [x] [ ] The Unlicense
23
+ 8 [x] [x] [ ] zlib License
24
+
25
+ Noteworthy Licensing Info
26
+ =========================
27
+
28
+ * Rust crate apple-bundles has copyleft licenses exclusively (Mozilla Public License 2.0)
29
+ * Rust crate apple-codesign has copyleft licenses exclusively (Mozilla Public License 2.0)
30
+ * Rust crate apple-flat-package has copyleft licenses exclusively (Mozilla Public License 2.0)
31
+ * Rust crate apple-xar has copyleft licenses exclusively (Mozilla Public License 2.0)
32
+ * Rust crate cpio-archive has copyleft licenses exclusively (Mozilla Public License 2.0)
33
+ * Rust crate cryptographic-message-syntax has copyleft licenses exclusively (Mozilla Public License 2.0)
34
+ * Rust crate option-ext has copyleft licenses exclusively (Mozilla Public License 2.0)
35
+ * Rust crate ring lacks a known license
36
+ * Rust crate webpki-roots has copyleft licenses exclusively (Mozilla Public License 2.0)
37
+ * Rust crate x509-certificate has copyleft licenses exclusively (Mozilla Public License 2.0)
38
+
39
+ Software Components
40
+ ===================
41
+
42
+ Rust crate addr2line
43
+ --------------------
44
+
45
+ Source location: https://github.com/gimli-rs/addr2line
46
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
47
+
48
+ The license texts for this component are reproduced elsewhere in this document.
49
+
50
+ Rust crate adler
51
+ ----------------
52
+
53
+ Authors: Jonas Schievink <jonasschievink@gmail.com>
54
+ Source location: https://github.com/jonas-schievink/adler.git
55
+ Licensed according to SPDX expression: 0BSD OR MIT OR Apache-2.0
56
+
57
+ The license texts for this component are reproduced elsewhere in this document.
58
+
59
+ Rust crate ahash
60
+ ----------------
61
+
62
+ Authors: Tom Kaitchuck <Tom.Kaitchuck@gmail.com>
63
+ Source location: https://github.com/tkaitchuck/ahash
64
+ Licensed according to SPDX expression: MIT OR Apache-2.0
65
+
66
+ The license texts for this component are reproduced elsewhere in this document.
67
+
68
+ Rust crate aho-corasick
69
+ -----------------------
70
+
71
+ Authors: Andrew Gallant <jamslam@gmail.com>
72
+ Homepage: https://github.com/BurntSushi/aho-corasick
73
+ Source location: https://github.com/BurntSushi/aho-corasick
74
+ Licensed according to SPDX expression: Unlicense OR MIT
75
+
76
+ The license texts for this component are reproduced elsewhere in this document.
77
+
78
+ Rust crate anstream
79
+ -------------------
80
+
81
+ Homepage: https://github.com/rust-cli/anstyle
82
+ Source location: https://github.com/rust-cli/anstyle.git
83
+ Licensed according to SPDX expression: MIT OR Apache-2.0
84
+
85
+ The license texts for this component are reproduced elsewhere in this document.
86
+
87
+ Rust crate anstyle
88
+ ------------------
89
+
90
+ Homepage: https://github.com/rust-cli/anstyle
91
+ Source location: https://github.com/rust-cli/anstyle.git
92
+ Licensed according to SPDX expression: MIT OR Apache-2.0
93
+
94
+ The license texts for this component are reproduced elsewhere in this document.
95
+
96
+ Rust crate anstyle-parse
97
+ ------------------------
98
+
99
+ Homepage: https://github.com/rust-cli/anstyle
100
+ Source location: https://github.com/rust-cli/anstyle.git
101
+ Licensed according to SPDX expression: MIT OR Apache-2.0
102
+
103
+ The license texts for this component are reproduced elsewhere in this document.
104
+
105
+ Rust crate anstyle-query
106
+ ------------------------
107
+
108
+ Source location: https://github.com/rust-cli/anstyle
109
+ Licensed according to SPDX expression: MIT OR Apache-2.0
110
+
111
+ The license texts for this component are reproduced elsewhere in this document.
112
+
113
+ Rust crate anyhow
114
+ -----------------
115
+
116
+ Authors: David Tolnay <dtolnay@gmail.com>
117
+ Source location: https://github.com/dtolnay/anyhow
118
+ Licensed according to SPDX expression: MIT OR Apache-2.0
119
+
120
+ The license texts for this component are reproduced elsewhere in this document.
121
+
122
+ Rust crate app-store-connect
123
+ ----------------------------
124
+
125
+ Homepage: https://github.com/indygreg/apple-platform-rs
126
+ Source location: https://github.com/indygreg/apple-platform-rs.git
127
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
128
+
129
+ The license texts for this component are reproduced elsewhere in this document.
130
+
131
+ Rust crate apple-bundles
132
+ ------------------------
133
+
134
+ Authors: Gregory Szorc <gregory.szorc@gmail.com>
135
+ Homepage: https://github.com/indygreg/apple-platform-rs
136
+ Source location: https://github.com/indygreg/apple-platform-rs.git
137
+ Licensed according to SPDX expression: MPL-2.0
138
+
139
+ The license texts for this component are reproduced elsewhere in this document.
140
+
141
+ Rust crate apple-codesign
142
+ -------------------------
143
+
144
+ Authors: Gregory Szorc <gregory.szorc@gmail.com>
145
+ Homepage: https://github.com/indygreg/apple-platform-rs
146
+ Source location: https://github.com/indygreg/apple-platform-rs.git
147
+ Licensed according to SPDX expression: MPL-2.0
148
+
149
+ The license texts for this component are reproduced elsewhere in this document.
150
+
151
+ Rust crate apple-flat-package
152
+ -----------------------------
153
+
154
+ Authors: Gregory Szorc <gregory.szorc@gmail.com>
155
+ Homepage: https://github.com/indygreg/apple-platform-rs
156
+ Source location: https://github.com/indygreg/apple-platform-rs.git
157
+ Licensed according to SPDX expression: MPL-2.0
158
+
159
+ The license texts for this component are reproduced elsewhere in this document.
160
+
161
+ Rust crate apple-xar
162
+ --------------------
163
+
164
+ Authors: Gregory Szorc <gregory.szorc@gmail.com>
165
+ Homepage: https://github.com/indygreg/apple-platform-rs
166
+ Source location: https://github.com/indygreg/apple-platform-rs.git
167
+ Licensed according to SPDX expression: MPL-2.0
168
+
169
+ The license texts for this component are reproduced elsewhere in this document.
170
+
171
+ Rust crate arrayvec
172
+ -------------------
173
+
174
+ Authors: bluss
175
+ Source location: https://github.com/bluss/arrayvec
176
+ Licensed according to SPDX expression: MIT OR Apache-2.0
177
+
178
+ The license texts for this component are reproduced elsewhere in this document.
179
+
180
+ Rust crate asn1-rs
181
+ ------------------
182
+
183
+ Authors: Pierre Chifflier <chifflier@wzdftpd.net>
184
+ Homepage: https://github.com/rusticata/asn1-rs
185
+ Source location: https://github.com/rusticata/asn1-rs.git
186
+ Licensed according to SPDX expression: MIT OR Apache-2.0
187
+
188
+ The license texts for this component are reproduced elsewhere in this document.
189
+
190
+ Rust crate asn1-rs-derive
191
+ -------------------------
192
+
193
+ Authors: Pierre Chifflier <chifflier@wzdftpd.net>
194
+ Homepage: https://github.com/rusticata/asn1-rs
195
+ Source location: https://github.com/rusticata/asn1-rs.git
196
+ Licensed according to SPDX expression: MIT OR Apache-2.0
197
+
198
+ The license texts for this component are reproduced elsewhere in this document.
199
+
200
+ Rust crate asn1-rs-impl
201
+ -----------------------
202
+
203
+ Authors: Pierre Chifflier <chifflier@wzdftpd.net>
204
+ Homepage: https://github.com/rusticata/asn1-rs
205
+ Source location: https://github.com/rusticata/asn1-rs.git
206
+ Licensed according to SPDX expression: MIT OR Apache-2.0
207
+
208
+ The license texts for this component are reproduced elsewhere in this document.
209
+
210
+ Rust crate aws-config
211
+ ---------------------
212
+
213
+ Authors: AWS Rust SDK Team <aws-sdk-rust@amazon.com>, Russell Cohen <rcoh@amazon.com>
214
+ Source location: https://github.com/smithy-lang/smithy-rs
215
+ Licensed according to SPDX expression: Apache-2.0
216
+
217
+ The license texts for this component are reproduced elsewhere in this document.
218
+
219
+ Rust crate aws-credential-types
220
+ -------------------------------
221
+
222
+ Authors: AWS Rust SDK Team <aws-sdk-rust@amazon.com>
223
+ Source location: https://github.com/smithy-lang/smithy-rs
224
+ Licensed according to SPDX expression: Apache-2.0
225
+
226
+ The license texts for this component are reproduced elsewhere in this document.
227
+
228
+ Rust crate aws-http
229
+ -------------------
230
+
231
+ Authors: AWS Rust SDK Team <aws-sdk-rust@amazon.com>, Russell Cohen <rcoh@amazon.com>
232
+ Source location: https://github.com/smithy-lang/smithy-rs
233
+ Licensed according to SPDX expression: Apache-2.0
234
+
235
+ The license texts for this component are reproduced elsewhere in this document.
236
+
237
+ Rust crate aws-runtime
238
+ ----------------------
239
+
240
+ Authors: AWS Rust SDK Team <aws-sdk-rust@amazon.com>
241
+ Source location: https://github.com/smithy-lang/smithy-rs
242
+ Licensed according to SPDX expression: Apache-2.0
243
+
244
+ The license texts for this component are reproduced elsewhere in this document.
245
+
246
+ Rust crate aws-sdk-s3
247
+ ---------------------
248
+
249
+ Authors: AWS Rust SDK Team <aws-sdk-rust@amazon.com>, Russell Cohen <rcoh@amazon.com>
250
+ Source location: https://github.com/awslabs/aws-sdk-rust
251
+ Licensed according to SPDX expression: Apache-2.0
252
+
253
+ The license texts for this component are reproduced elsewhere in this document.
254
+
255
+ Rust crate aws-sdk-sso
256
+ ----------------------
257
+
258
+ Authors: AWS Rust SDK Team <aws-sdk-rust@amazon.com>, Russell Cohen <rcoh@amazon.com>
259
+ Source location: https://github.com/awslabs/aws-sdk-rust
260
+ Licensed according to SPDX expression: Apache-2.0
261
+
262
+ The license texts for this component are reproduced elsewhere in this document.
263
+
264
+ Rust crate aws-sdk-ssooidc
265
+ --------------------------
266
+
267
+ Authors: AWS Rust SDK Team <aws-sdk-rust@amazon.com>, Russell Cohen <rcoh@amazon.com>
268
+ Source location: https://github.com/awslabs/aws-sdk-rust
269
+ Licensed according to SPDX expression: Apache-2.0
270
+
271
+ The license texts for this component are reproduced elsewhere in this document.
272
+
273
+ Rust crate aws-sdk-sts
274
+ ----------------------
275
+
276
+ Authors: AWS Rust SDK Team <aws-sdk-rust@amazon.com>, Russell Cohen <rcoh@amazon.com>
277
+ Source location: https://github.com/awslabs/aws-sdk-rust
278
+ Licensed according to SPDX expression: Apache-2.0
279
+
280
+ The license texts for this component are reproduced elsewhere in this document.
281
+
282
+ Rust crate aws-sigv4
283
+ --------------------
284
+
285
+ Authors: AWS Rust SDK Team <aws-sdk-rust@amazon.com>, David Barsky <me@davidbarsky.com>
286
+ Source location: https://github.com/smithy-lang/smithy-rs
287
+ Licensed according to SPDX expression: Apache-2.0
288
+
289
+ The license texts for this component are reproduced elsewhere in this document.
290
+
291
+ Rust crate aws-smithy-async
292
+ ---------------------------
293
+
294
+ Authors: AWS Rust SDK Team <aws-sdk-rust@amazon.com>, John DiSanti <jdisanti@amazon.com>
295
+ Source location: https://github.com/smithy-lang/smithy-rs
296
+ Licensed according to SPDX expression: Apache-2.0
297
+
298
+ The license texts for this component are reproduced elsewhere in this document.
299
+
300
+ Rust crate aws-smithy-checksums
301
+ -------------------------------
302
+
303
+ Authors: AWS Rust SDK Team <aws-sdk-rust@amazon.com>, Zelda Hessler <zhessler@amazon.com>
304
+ Source location: https://github.com/smithy-lang/smithy-rs
305
+ Licensed according to SPDX expression: Apache-2.0
306
+
307
+ The license texts for this component are reproduced elsewhere in this document.
308
+
309
+ Rust crate aws-smithy-eventstream
310
+ ---------------------------------
311
+
312
+ Authors: AWS Rust SDK Team <aws-sdk-rust@amazon.com>, John DiSanti <jdisanti@amazon.com>
313
+ Source location: https://github.com/smithy-lang/smithy-rs
314
+ Licensed according to SPDX expression: Apache-2.0
315
+
316
+ The license texts for this component are reproduced elsewhere in this document.
317
+
318
+ Rust crate aws-smithy-http
319
+ --------------------------
320
+
321
+ Authors: AWS Rust SDK Team <aws-sdk-rust@amazon.com>, Russell Cohen <rcoh@amazon.com>
322
+ Source location: https://github.com/smithy-lang/smithy-rs
323
+ Licensed according to SPDX expression: Apache-2.0
324
+
325
+ The license texts for this component are reproduced elsewhere in this document.
326
+
327
+ Rust crate aws-smithy-json
328
+ --------------------------
329
+
330
+ Authors: AWS Rust SDK Team <aws-sdk-rust@amazon.com>, John DiSanti <jdisanti@amazon.com>
331
+ Source location: https://github.com/smithy-lang/smithy-rs
332
+ Licensed according to SPDX expression: Apache-2.0
333
+
334
+ The license texts for this component are reproduced elsewhere in this document.
335
+
336
+ Rust crate aws-smithy-query
337
+ ---------------------------
338
+
339
+ Authors: AWS Rust SDK Team <aws-sdk-rust@amazon.com>, John DiSanti <jdisanti@amazon.com>
340
+ Source location: https://github.com/smithy-lang/smithy-rs
341
+ Licensed according to SPDX expression: Apache-2.0
342
+
343
+ The license texts for this component are reproduced elsewhere in this document.
344
+
345
+ Rust crate aws-smithy-runtime
346
+ -----------------------------
347
+
348
+ Authors: AWS Rust SDK Team <aws-sdk-rust@amazon.com>, Zelda Hessler <zhessler@amazon.com>
349
+ Source location: https://github.com/smithy-lang/smithy-rs
350
+ Licensed according to SPDX expression: Apache-2.0
351
+
352
+ The license texts for this component are reproduced elsewhere in this document.
353
+
354
+ Rust crate aws-smithy-runtime-api
355
+ ---------------------------------
356
+
357
+ Authors: AWS Rust SDK Team <aws-sdk-rust@amazon.com>, Zelda Hessler <zhessler@amazon.com>
358
+ Source location: https://github.com/smithy-lang/smithy-rs
359
+ Licensed according to SPDX expression: Apache-2.0
360
+
361
+ The license texts for this component are reproduced elsewhere in this document.
362
+
363
+ Rust crate aws-smithy-types
364
+ ---------------------------
365
+
366
+ Authors: AWS Rust SDK Team <aws-sdk-rust@amazon.com>, Russell Cohen <rcoh@amazon.com>
367
+ Source location: https://github.com/smithy-lang/smithy-rs
368
+ Licensed according to SPDX expression: Apache-2.0
369
+
370
+ The license texts for this component are reproduced elsewhere in this document.
371
+
372
+ Rust crate aws-smithy-xml
373
+ -------------------------
374
+
375
+ Authors: AWS Rust SDK Team <aws-sdk-rust@amazon.com>, Russell Cohen <rcoh@amazon.com>
376
+ Source location: https://github.com/smithy-lang/smithy-rs
377
+ Licensed according to SPDX expression: Apache-2.0
378
+
379
+ The license texts for this component are reproduced elsewhere in this document.
380
+
381
+ Rust crate aws-types
382
+ --------------------
383
+
384
+ Authors: AWS Rust SDK Team <aws-sdk-rust@amazon.com>, Russell Cohen <rcoh@amazon.com>
385
+ Source location: https://github.com/smithy-lang/smithy-rs
386
+ Licensed according to SPDX expression: Apache-2.0
387
+
388
+ The license texts for this component are reproduced elsewhere in this document.
389
+
390
+ Rust crate backtrace
391
+ --------------------
392
+
393
+ Authors: The Rust Project Developers
394
+ Homepage: https://github.com/rust-lang/backtrace-rs
395
+ Source location: https://github.com/rust-lang/backtrace-rs
396
+ Licensed according to SPDX expression: MIT OR Apache-2.0
397
+
398
+ The license texts for this component are reproduced elsewhere in this document.
399
+
400
+ Rust crate base16ct
401
+ -------------------
402
+
403
+ Authors: RustCrypto Developers
404
+ Source location: https://github.com/RustCrypto/formats/tree/master/base16ct
405
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
406
+
407
+ The license texts for this component are reproduced elsewhere in this document.
408
+
409
+ Rust crate base64
410
+ -----------------
411
+
412
+ Authors: Alice Maz <alice@alicemaz.com>, Marshall Pierce <marshall@mpierce.org>
413
+ Source location: https://github.com/marshallpierce/rust-base64
414
+ Licensed according to SPDX expression: MIT OR Apache-2.0
415
+
416
+ The license texts for this component are reproduced elsewhere in this document.
417
+
418
+ Rust crate base64-simd
419
+ ----------------------
420
+
421
+ Source location: https://github.com/Nugine/simd
422
+ Licensed according to SPDX expression: MIT
423
+
424
+ The license texts for this component are reproduced elsewhere in this document.
425
+
426
+ Rust crate base64ct
427
+ -------------------
428
+
429
+ Authors: RustCrypto Developers
430
+ Source location: https://github.com/RustCrypto/formats/tree/master/base64ct
431
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
432
+
433
+ The license texts for this component are reproduced elsewhere in this document.
434
+
435
+ Rust crate bcder
436
+ ----------------
437
+
438
+ Authors: NLnet Labs <rust-team@nlnetlabs.nl>
439
+ Source location: https://github.com/nlnetlabs/bcder
440
+ Licensed according to SPDX expression: BSD-3-Clause
441
+
442
+ The license texts for this component are reproduced elsewhere in this document.
443
+
444
+ Rust crate bitflags
445
+ -------------------
446
+
447
+ Authors: The Rust Project Developers
448
+ Homepage: https://github.com/bitflags/bitflags
449
+ Source location: https://github.com/bitflags/bitflags
450
+ Licensed according to SPDX expression: MIT OR Apache-2.0
451
+
452
+ The license texts for this component are reproduced elsewhere in this document.
453
+
454
+ Rust crate bitvec
455
+ -----------------
456
+
457
+ Homepage: https://bitvecto-rs.github.io/bitvec
458
+ Source location: https://github.com/bitvecto-rs/bitvec
459
+ Licensed according to SPDX expression: MIT
460
+
461
+ The license texts for this component are reproduced elsewhere in this document.
462
+
463
+ Rust crate bitvec-nom2
464
+ ----------------------
465
+
466
+ Authors: contact@geoffroycouprie.com
467
+ Source location: https://github.com/rust-bakery/nom-bitvec
468
+ Licensed according to SPDX expression: MIT
469
+
470
+ The license texts for this component are reproduced elsewhere in this document.
471
+
472
+ Rust crate block-buffer
473
+ -----------------------
474
+
475
+ Authors: RustCrypto Developers
476
+ Source location: https://github.com/RustCrypto/utils
477
+ Licensed according to SPDX expression: MIT OR Apache-2.0
478
+
479
+ The license texts for this component are reproduced elsewhere in this document.
480
+
481
+ Rust crate block-padding
482
+ ------------------------
483
+
484
+ Authors: RustCrypto Developers
485
+ Source location: https://github.com/RustCrypto/utils
486
+ Licensed according to SPDX expression: MIT OR Apache-2.0
487
+
488
+ The license texts for this component are reproduced elsewhere in this document.
489
+
490
+ Rust crate byteorder
491
+ --------------------
492
+
493
+ Authors: Andrew Gallant <jamslam@gmail.com>
494
+ Homepage: https://github.com/BurntSushi/byteorder
495
+ Source location: https://github.com/BurntSushi/byteorder
496
+ Licensed according to SPDX expression: Unlicense OR MIT
497
+
498
+ The license texts for this component are reproduced elsewhere in this document.
499
+
500
+ Rust crate bytes
501
+ ----------------
502
+
503
+ Authors: Carl Lerche <me@carllerche.com>, Sean McArthur <sean@seanmonstar.com>
504
+ Source location: https://github.com/tokio-rs/bytes
505
+ Licensed according to SPDX expression: MIT
506
+
507
+ The license texts for this component are reproduced elsewhere in this document.
508
+
509
+ Rust crate bytes-utils
510
+ ----------------------
511
+
512
+ Authors: Michal 'vorner' Vaner <vorner@vorner.cz>
513
+ Source location: https://github.com/vorner/bytes-utils
514
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
515
+
516
+ The license texts for this component are reproduced elsewhere in this document.
517
+
518
+ Rust crate bytesize
519
+ -------------------
520
+
521
+ Authors: Hyunsik Choi <hyunsik.choi@gmail.com>
522
+ Homepage: https://github.com/hyunsik/bytesize/
523
+ Source location: https://github.com/hyunsik/bytesize/
524
+ Licensed according to SPDX expression: Apache-2.0
525
+
526
+ The license texts for this component are reproduced elsewhere in this document.
527
+
528
+ Rust crate bzip2
529
+ ----------------
530
+
531
+ Authors: Alex Crichton <alex@alexcrichton.com>
532
+ Homepage: https://github.com/alexcrichton/bzip2-rs
533
+ Source location: https://github.com/alexcrichton/bzip2-rs
534
+ Licensed according to SPDX expression: MIT OR Apache-2.0
535
+
536
+ The license texts for this component are reproduced elsewhere in this document.
537
+
538
+ Rust crate bzip2-sys
539
+ --------------------
540
+
541
+ Authors: Alex Crichton <alex@alexcrichton.com>
542
+ Homepage: https://github.com/alexcrichton/bzip2-rs
543
+ Source location: https://github.com/alexcrichton/bzip2-rs
544
+ Licensed according to SPDX expression: MIT OR Apache-2.0
545
+
546
+ The license texts for this component are reproduced elsewhere in this document.
547
+
548
+ Rust crate cbc
549
+ --------------
550
+
551
+ Authors: RustCrypto Developers
552
+ Source location: https://github.com/RustCrypto/block-modes
553
+ Licensed according to SPDX expression: MIT OR Apache-2.0
554
+
555
+ The license texts for this component are reproduced elsewhere in this document.
556
+
557
+ Rust crate cfg-if
558
+ -----------------
559
+
560
+ Authors: Alex Crichton <alex@alexcrichton.com>
561
+ Homepage: https://github.com/alexcrichton/cfg-if
562
+ Source location: https://github.com/alexcrichton/cfg-if
563
+ Licensed according to SPDX expression: MIT OR Apache-2.0
564
+
565
+ The license texts for this component are reproduced elsewhere in this document.
566
+
567
+ Rust crate chrono
568
+ -----------------
569
+
570
+ Homepage: https://github.com/chronotope/chrono
571
+ Source location: https://github.com/chronotope/chrono
572
+ Licensed according to SPDX expression: MIT OR Apache-2.0
573
+
574
+ The license texts for this component are reproduced elsewhere in this document.
575
+
576
+ Rust crate cipher
577
+ -----------------
578
+
579
+ Authors: RustCrypto Developers
580
+ Source location: https://github.com/RustCrypto/traits
581
+ Licensed according to SPDX expression: MIT OR Apache-2.0
582
+
583
+ The license texts for this component are reproduced elsewhere in this document.
584
+
585
+ Rust crate clap
586
+ ---------------
587
+
588
+ Source location: https://github.com/clap-rs/clap
589
+ Licensed according to SPDX expression: MIT OR Apache-2.0
590
+
591
+ The license texts for this component are reproduced elsewhere in this document.
592
+
593
+ Rust crate clap_builder
594
+ -----------------------
595
+
596
+ Source location: https://github.com/clap-rs/clap
597
+ Licensed according to SPDX expression: MIT OR Apache-2.0
598
+
599
+ The license texts for this component are reproduced elsewhere in this document.
600
+
601
+ Rust crate clap_derive
602
+ ----------------------
603
+
604
+ Source location: https://github.com/clap-rs/clap/tree/master/clap_derive
605
+ Licensed according to SPDX expression: MIT OR Apache-2.0
606
+
607
+ The license texts for this component are reproduced elsewhere in this document.
608
+
609
+ Rust crate clap_lex
610
+ -------------------
611
+
612
+ Source location: https://github.com/clap-rs/clap/tree/master/clap_lex
613
+ Licensed according to SPDX expression: MIT OR Apache-2.0
614
+
615
+ The license texts for this component are reproduced elsewhere in this document.
616
+
617
+ Rust crate colorchoice
618
+ ----------------------
619
+
620
+ Source location: https://github.com/rust-cli/anstyle
621
+ Licensed according to SPDX expression: MIT OR Apache-2.0
622
+
623
+ The license texts for this component are reproduced elsewhere in this document.
624
+
625
+ Rust crate console
626
+ ------------------
627
+
628
+ Authors: Armin Ronacher <armin.ronacher@active-4.com>
629
+ Homepage: https://github.com/console-rs/console
630
+ Source location: https://github.com/console-rs/console
631
+ Licensed according to SPDX expression: MIT
632
+
633
+ The license texts for this component are reproduced elsewhere in this document.
634
+
635
+ Rust crate const-oid
636
+ --------------------
637
+
638
+ Authors: RustCrypto Developers
639
+ Source location: https://github.com/RustCrypto/formats/tree/master/const-oid
640
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
641
+
642
+ The license texts for this component are reproduced elsewhere in this document.
643
+
644
+ Rust crate const_panic
645
+ ----------------------
646
+
647
+ Authors: rodrimati1992 <rodrimatt1985@gmail.com>
648
+ Source location: https://github.com/rodrimati1992/const_panic/
649
+ Licensed according to SPDX expression: Zlib
650
+
651
+ The license texts for this component are reproduced elsewhere in this document.
652
+
653
+ Rust crate cookie-factory
654
+ -------------------------
655
+
656
+ Authors: Geoffroy Couprie <geo.couprie@gmail.com>, Pierre Chifflier <chifflier@wzdftpd.net>
657
+ Source location: https://github.com/rust-bakery/cookie-factory
658
+ Licensed according to SPDX expression: MIT
659
+
660
+ The license texts for this component are reproduced elsewhere in this document.
661
+
662
+ Rust crate cpio-archive
663
+ -----------------------
664
+
665
+ Authors: Gregory Szorc <gregory.szorc@gmail.com>
666
+ Homepage: https://github.com/indygreg/apple-platform-rs
667
+ Source location: https://github.com/indygreg/apple-platform-rs.git
668
+ Licensed according to SPDX expression: MPL-2.0
669
+
670
+ The license texts for this component are reproduced elsewhere in this document.
671
+
672
+ Rust crate cpufeatures
673
+ ----------------------
674
+
675
+ Authors: RustCrypto Developers
676
+ Source location: https://github.com/RustCrypto/utils
677
+ Licensed according to SPDX expression: MIT OR Apache-2.0
678
+
679
+ The license texts for this component are reproduced elsewhere in this document.
680
+
681
+ Rust crate crc32c
682
+ -----------------
683
+
684
+ Authors: Zack Owens
685
+ Homepage: https://github.com/zowens/crc32c
686
+ Source location: https://github.com/zowens/crc32c
687
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
688
+
689
+ The license texts for this component are reproduced elsewhere in this document.
690
+
691
+ Rust crate crc32fast
692
+ --------------------
693
+
694
+ Authors: Sam Rijs <srijs@airpost.net>, Alex Crichton <alex@alexcrichton.com>
695
+ Source location: https://github.com/srijs/rust-crc32fast
696
+ Licensed according to SPDX expression: MIT OR Apache-2.0
697
+
698
+ The license texts for this component are reproduced elsewhere in this document.
699
+
700
+ Rust crate crossbeam-deque
701
+ --------------------------
702
+
703
+ Homepage: https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-deque
704
+ Source location: https://github.com/crossbeam-rs/crossbeam
705
+ Licensed according to SPDX expression: MIT OR Apache-2.0
706
+
707
+ The license texts for this component are reproduced elsewhere in this document.
708
+
709
+ Rust crate crossbeam-epoch
710
+ --------------------------
711
+
712
+ Homepage: https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-epoch
713
+ Source location: https://github.com/crossbeam-rs/crossbeam
714
+ Licensed according to SPDX expression: MIT OR Apache-2.0
715
+
716
+ The license texts for this component are reproduced elsewhere in this document.
717
+
718
+ Rust crate crossbeam-utils
719
+ --------------------------
720
+
721
+ Homepage: https://github.com/crossbeam-rs/crossbeam/tree/master/crossbeam-utils
722
+ Source location: https://github.com/crossbeam-rs/crossbeam
723
+ Licensed according to SPDX expression: MIT OR Apache-2.0
724
+
725
+ The license texts for this component are reproduced elsewhere in this document.
726
+
727
+ Rust crate crypto-bigint
728
+ ------------------------
729
+
730
+ Authors: RustCrypto Developers
731
+ Source location: https://github.com/RustCrypto/crypto-bigint
732
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
733
+
734
+ The license texts for this component are reproduced elsewhere in this document.
735
+
736
+ Rust crate crypto-common
737
+ ------------------------
738
+
739
+ Authors: RustCrypto Developers
740
+ Source location: https://github.com/RustCrypto/traits
741
+ Licensed according to SPDX expression: MIT OR Apache-2.0
742
+
743
+ The license texts for this component are reproduced elsewhere in this document.
744
+
745
+ Rust crate cryptographic-message-syntax
746
+ ---------------------------------------
747
+
748
+ Authors: Gregory Szorc <gregory.szorc@gmail.com>
749
+ Homepage: https://github.com/indygreg/cryptography-rs
750
+ Source location: https://github.com/indygreg/cryptography-rs.git
751
+ Licensed according to SPDX expression: MPL-2.0
752
+
753
+ The license texts for this component are reproduced elsewhere in this document.
754
+
755
+ Rust crate curve25519-dalek
756
+ ---------------------------
757
+
758
+ Authors: Isis Lovecruft <isis@patternsinthevoid.net>, Henry de Valence <hdevalence@hdevalence.ca>
759
+ Homepage: https://github.com/dalek-cryptography/curve25519-dalek
760
+ Source location: https://github.com/dalek-cryptography/curve25519-dalek/tree/main/curve25519-dalek
761
+ Licensed according to SPDX expression: BSD-3-Clause
762
+
763
+ The license texts for this component are reproduced elsewhere in this document.
764
+
765
+ Rust crate data-encoding
766
+ ------------------------
767
+
768
+ Authors: Julien Cretin <git@ia0.eu>
769
+ Source location: https://github.com/ia0/data-encoding
770
+ Licensed according to SPDX expression: MIT
771
+
772
+ The license texts for this component are reproduced elsewhere in this document.
773
+
774
+ Rust crate der
775
+ --------------
776
+
777
+ Authors: RustCrypto Developers
778
+ Source location: https://github.com/RustCrypto/formats/tree/master/der
779
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
780
+
781
+ The license texts for this component are reproduced elsewhere in this document.
782
+
783
+ Rust crate der_derive
784
+ ---------------------
785
+
786
+ Authors: RustCrypto Developers
787
+ Source location: https://github.com/RustCrypto/formats/tree/master/der/derive
788
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
789
+
790
+ The license texts for this component are reproduced elsewhere in this document.
791
+
792
+ Rust crate deranged
793
+ -------------------
794
+
795
+ Authors: Jacob Pratt <jacob@jhpratt.dev>
796
+ Source location: https://github.com/jhpratt/deranged
797
+ Licensed according to SPDX expression: MIT OR Apache-2.0
798
+
799
+ The license texts for this component are reproduced elsewhere in this document.
800
+
801
+ Rust crate derive_more
802
+ ----------------------
803
+
804
+ Authors: Jelte Fennema <github-tech@jeltef.nl>
805
+ Source location: https://github.com/JelteF/derive_more
806
+ Licensed according to SPDX expression: MIT
807
+
808
+ The license texts for this component are reproduced elsewhere in this document.
809
+
810
+ Rust crate des
811
+ --------------
812
+
813
+ Authors: RustCrypto Developers
814
+ Source location: https://github.com/RustCrypto/block-ciphers
815
+ Licensed according to SPDX expression: MIT OR Apache-2.0
816
+
817
+ The license texts for this component are reproduced elsewhere in this document.
818
+
819
+ Rust crate dialoguer
820
+ --------------------
821
+
822
+ Authors: Armin Ronacher <armin.ronacher@active-4.com>, Pavan Kumar Sunkara <pavan.sss1991@gmail.com>
823
+ Homepage: https://github.com/console-rs/dialoguer
824
+ Source location: https://github.com/console-rs/dialoguer
825
+ Licensed according to SPDX expression: MIT
826
+
827
+ The license texts for this component are reproduced elsewhere in this document.
828
+
829
+ Rust crate difference
830
+ ---------------------
831
+
832
+ Authors: Johann Hofmann <mail@johann-hofmann.com>
833
+ Source location: https://github.com/johannhof/difference.rs
834
+ Licensed according to SPDX expression: MIT
835
+
836
+ The license texts for this component are reproduced elsewhere in this document.
837
+
838
+ Rust crate digest
839
+ -----------------
840
+
841
+ Authors: RustCrypto Developers
842
+ Source location: https://github.com/RustCrypto/traits
843
+ Licensed according to SPDX expression: MIT OR Apache-2.0
844
+
845
+ The license texts for this component are reproduced elsewhere in this document.
846
+
847
+ Rust crate dirs
848
+ ---------------
849
+
850
+ Authors: Simon Ochsenreither <simon@ochsenreither.de>
851
+ Source location: https://github.com/soc/dirs-rs
852
+ Licensed according to SPDX expression: MIT OR Apache-2.0
853
+
854
+ The license texts for this component are reproduced elsewhere in this document.
855
+
856
+ Rust crate dirs-sys
857
+ -------------------
858
+
859
+ Authors: Simon Ochsenreither <simon@ochsenreither.de>
860
+ Source location: https://github.com/dirs-dev/dirs-sys-rs
861
+ Licensed according to SPDX expression: MIT OR Apache-2.0
862
+
863
+ The license texts for this component are reproduced elsewhere in this document.
864
+
865
+ Rust crate displaydoc
866
+ ---------------------
867
+
868
+ Authors: Jane Lusby <jlusby@yaah.dev>
869
+ Homepage: https://github.com/yaahc/displaydoc
870
+ Source location: https://github.com/yaahc/displaydoc
871
+ Licensed according to SPDX expression: MIT OR Apache-2.0
872
+
873
+ The license texts for this component are reproduced elsewhere in this document.
874
+
875
+ Rust crate doc-comment
876
+ ----------------------
877
+
878
+ Authors: Guillaume Gomez <guillaume1.gomez@gmail.com>
879
+ Source location: https://github.com/GuillaumeGomez/doc-comment
880
+ Licensed according to SPDX expression: MIT
881
+
882
+ The license texts for this component are reproduced elsewhere in this document.
883
+
884
+ Rust crate ecdsa
885
+ ----------------
886
+
887
+ Authors: RustCrypto Developers
888
+ Source location: https://github.com/RustCrypto/signatures/tree/master/ecdsa
889
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
890
+
891
+ The license texts for this component are reproduced elsewhere in this document.
892
+
893
+ Rust crate either
894
+ -----------------
895
+
896
+ Authors: bluss
897
+ Source location: https://github.com/bluss/either
898
+ Licensed according to SPDX expression: MIT OR Apache-2.0
899
+
900
+ The license texts for this component are reproduced elsewhere in this document.
901
+
902
+ Rust crate elliptic-curve
903
+ -------------------------
904
+
905
+ Authors: RustCrypto Developers
906
+ Source location: https://github.com/RustCrypto/traits/tree/master/elliptic-curve
907
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
908
+
909
+ The license texts for this component are reproduced elsewhere in this document.
910
+
911
+ Rust crate encoding_rs
912
+ ----------------------
913
+
914
+ Authors: Henri Sivonen <hsivonen@hsivonen.fi>
915
+ Homepage: https://docs.rs/encoding_rs/
916
+ Source location: https://github.com/hsivonen/encoding_rs
917
+ Licensed according to SPDX expression: (Apache-2.0 OR MIT) AND BSD-3-Clause
918
+
919
+ The license texts for this component are reproduced elsewhere in this document.
920
+
921
+ Rust crate env_logger
922
+ ---------------------
923
+
924
+ Source location: https://github.com/rust-cli/env_logger
925
+ Licensed according to SPDX expression: MIT OR Apache-2.0
926
+
927
+ The license texts for this component are reproduced elsewhere in this document.
928
+
929
+ Rust crate equivalent
930
+ ---------------------
931
+
932
+ Source location: https://github.com/cuviper/equivalent
933
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
934
+
935
+ The license texts for this component are reproduced elsewhere in this document.
936
+
937
+ Rust crate fastrand
938
+ -------------------
939
+
940
+ Authors: Stjepan Glavina <stjepang@gmail.com>
941
+ Source location: https://github.com/smol-rs/fastrand
942
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
943
+
944
+ The license texts for this component are reproduced elsewhere in this document.
945
+
946
+ Rust crate ff
947
+ -------------
948
+
949
+ Authors: Sean Bowe <ewillbefull@gmail.com>, Jack Grigg <thestr4d@gmail.com>
950
+ Homepage: https://github.com/zkcrypto/ff
951
+ Source location: https://github.com/zkcrypto/ff
952
+ Licensed according to SPDX expression: MIT OR Apache-2.0
953
+
954
+ The license texts for this component are reproduced elsewhere in this document.
955
+
956
+ Rust crate figment
957
+ ------------------
958
+
959
+ Authors: Sergio Benitez <sb@sergio.bz>
960
+ Source location: https://github.com/SergioBenitez/Figment
961
+ Licensed according to SPDX expression: MIT OR Apache-2.0
962
+
963
+ The license texts for this component are reproduced elsewhere in this document.
964
+
965
+ Rust crate filetime
966
+ -------------------
967
+
968
+ Authors: Alex Crichton <alex@alexcrichton.com>
969
+ Homepage: https://github.com/alexcrichton/filetime
970
+ Source location: https://github.com/alexcrichton/filetime
971
+ Licensed according to SPDX expression: MIT OR Apache-2.0
972
+
973
+ The license texts for this component are reproduced elsewhere in this document.
974
+
975
+ Rust crate flagset
976
+ ------------------
977
+
978
+ Authors: Nathaniel McCallum <nathaniel@profian.com>
979
+ Homepage: https://github.com/enarx/flagset
980
+ Source location: https://github.com/enarx/flagset
981
+ Licensed according to SPDX expression: Apache-2.0
982
+
983
+ The license texts for this component are reproduced elsewhere in this document.
984
+
985
+ Rust crate flate2
986
+ -----------------
987
+
988
+ Authors: Alex Crichton <alex@alexcrichton.com>, Josh Triplett <josh@joshtriplett.org>
989
+ Homepage: https://github.com/rust-lang/flate2-rs
990
+ Source location: https://github.com/rust-lang/flate2-rs
991
+ Licensed according to SPDX expression: MIT OR Apache-2.0
992
+
993
+ The license texts for this component are reproduced elsewhere in this document.
994
+
995
+ Rust crate fnv
996
+ --------------
997
+
998
+ Authors: Alex Crichton <alex@alexcrichton.com>
999
+ Source location: https://github.com/servo/rust-fnv
1000
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
1001
+
1002
+ The license texts for this component are reproduced elsewhere in this document.
1003
+
1004
+ Rust crate form_urlencoded
1005
+ --------------------------
1006
+
1007
+ Authors: The rust-url developers
1008
+ Source location: https://github.com/servo/rust-url
1009
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1010
+
1011
+ The license texts for this component are reproduced elsewhere in this document.
1012
+
1013
+ Rust crate funty
1014
+ ----------------
1015
+
1016
+ Authors: myrrlyn <self@myrrlyn.dev>
1017
+ Source location: https://github.com/myrrlyn/funty
1018
+ Licensed according to SPDX expression: MIT
1019
+
1020
+ The license texts for this component are reproduced elsewhere in this document.
1021
+
1022
+ Rust crate futures-channel
1023
+ --------------------------
1024
+
1025
+ Homepage: https://rust-lang.github.io/futures-rs
1026
+ Source location: https://github.com/rust-lang/futures-rs
1027
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1028
+
1029
+ The license texts for this component are reproduced elsewhere in this document.
1030
+
1031
+ Rust crate futures-core
1032
+ -----------------------
1033
+
1034
+ Homepage: https://rust-lang.github.io/futures-rs
1035
+ Source location: https://github.com/rust-lang/futures-rs
1036
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1037
+
1038
+ The license texts for this component are reproduced elsewhere in this document.
1039
+
1040
+ Rust crate futures-io
1041
+ ---------------------
1042
+
1043
+ Homepage: https://rust-lang.github.io/futures-rs
1044
+ Source location: https://github.com/rust-lang/futures-rs
1045
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1046
+
1047
+ The license texts for this component are reproduced elsewhere in this document.
1048
+
1049
+ Rust crate futures-sink
1050
+ -----------------------
1051
+
1052
+ Homepage: https://rust-lang.github.io/futures-rs
1053
+ Source location: https://github.com/rust-lang/futures-rs
1054
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1055
+
1056
+ The license texts for this component are reproduced elsewhere in this document.
1057
+
1058
+ Rust crate futures-task
1059
+ -----------------------
1060
+
1061
+ Homepage: https://rust-lang.github.io/futures-rs
1062
+ Source location: https://github.com/rust-lang/futures-rs
1063
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1064
+
1065
+ The license texts for this component are reproduced elsewhere in this document.
1066
+
1067
+ Rust crate futures-util
1068
+ -----------------------
1069
+
1070
+ Homepage: https://rust-lang.github.io/futures-rs
1071
+ Source location: https://github.com/rust-lang/futures-rs
1072
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1073
+
1074
+ The license texts for this component are reproduced elsewhere in this document.
1075
+
1076
+ Rust crate generic-array
1077
+ ------------------------
1078
+
1079
+ Authors: Bartłomiej Kamiński <fizyk20@gmail.com>, Aaron Trent <novacrazy@gmail.com>
1080
+ Source location: https://github.com/fizyk20/generic-array.git
1081
+ Licensed according to SPDX expression: MIT
1082
+
1083
+ The license texts for this component are reproduced elsewhere in this document.
1084
+
1085
+ Rust crate getrandom
1086
+ --------------------
1087
+
1088
+ Authors: The Rand Project Developers
1089
+ Source location: https://github.com/rust-random/getrandom
1090
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1091
+
1092
+ The license texts for this component are reproduced elsewhere in this document.
1093
+
1094
+ Rust crate gimli
1095
+ ----------------
1096
+
1097
+ Source location: https://github.com/gimli-rs/gimli
1098
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1099
+
1100
+ The license texts for this component are reproduced elsewhere in this document.
1101
+
1102
+ Rust crate glob
1103
+ ---------------
1104
+
1105
+ Authors: The Rust Project Developers
1106
+ Homepage: https://github.com/rust-lang/glob
1107
+ Source location: https://github.com/rust-lang/glob
1108
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1109
+
1110
+ The license texts for this component are reproduced elsewhere in this document.
1111
+
1112
+ Rust crate goblin
1113
+ -----------------
1114
+
1115
+ Authors: m4b <m4b.github.io@gmail.com>, seu <seu@panopticon.re>, Will Glynn <will@willglynn.com>, Philip Craig <philipjcraig@gmail.com>, Lzu Tao <taolzu@gmail.com>
1116
+ Source location: https://github.com/m4b/goblin
1117
+ Licensed according to SPDX expression: MIT
1118
+
1119
+ The license texts for this component are reproduced elsewhere in this document.
1120
+
1121
+ Rust crate group
1122
+ ----------------
1123
+
1124
+ Authors: Sean Bowe <ewillbefull@gmail.com>, Jack Grigg <jack@z.cash>
1125
+ Homepage: https://github.com/zkcrypto/group
1126
+ Source location: https://github.com/zkcrypto/group
1127
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1128
+
1129
+ The license texts for this component are reproduced elsewhere in this document.
1130
+
1131
+ Rust crate h2
1132
+ -------------
1133
+
1134
+ Authors: Carl Lerche <me@carllerche.com>, Sean McArthur <sean@seanmonstar.com>
1135
+ Source location: https://github.com/hyperium/h2
1136
+ Licensed according to SPDX expression: MIT
1137
+
1138
+ The license texts for this component are reproduced elsewhere in this document.
1139
+
1140
+ Rust crate hashbrown
1141
+ --------------------
1142
+
1143
+ Authors: Amanieu d'Antras <amanieu@gmail.com>
1144
+ Source location: https://github.com/rust-lang/hashbrown
1145
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1146
+
1147
+ The license texts for this component are reproduced elsewhere in this document.
1148
+
1149
+ Rust crate hex
1150
+ --------------
1151
+
1152
+ Authors: KokaKiwi <kokakiwi@kokakiwi.net>
1153
+ Source location: https://github.com/KokaKiwi/rust-hex
1154
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1155
+
1156
+ The license texts for this component are reproduced elsewhere in this document.
1157
+
1158
+ Rust crate hkdf
1159
+ ---------------
1160
+
1161
+ Authors: RustCrypto Developers
1162
+ Homepage: https://github.com/RustCrypto/KDFs/
1163
+ Source location: https://github.com/RustCrypto/KDFs/
1164
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1165
+
1166
+ The license texts for this component are reproduced elsewhere in this document.
1167
+
1168
+ Rust crate hmac
1169
+ ---------------
1170
+
1171
+ Authors: RustCrypto Developers
1172
+ Source location: https://github.com/RustCrypto/MACs
1173
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1174
+
1175
+ The license texts for this component are reproduced elsewhere in this document.
1176
+
1177
+ Rust crate http
1178
+ ---------------
1179
+
1180
+ Authors: Alex Crichton <alex@alexcrichton.com>, Carl Lerche <me@carllerche.com>, Sean McArthur <sean@seanmonstar.com>
1181
+ Source location: https://github.com/hyperium/http
1182
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1183
+
1184
+ The license texts for this component are reproduced elsewhere in this document.
1185
+
1186
+ Rust crate http-body
1187
+ --------------------
1188
+
1189
+ Authors: Carl Lerche <me@carllerche.com>, Lucio Franco <luciofranco14@gmail.com>, Sean McArthur <sean@seanmonstar.com>
1190
+ Source location: https://github.com/hyperium/http-body
1191
+ Licensed according to SPDX expression: MIT
1192
+
1193
+ The license texts for this component are reproduced elsewhere in this document.
1194
+
1195
+ Rust crate httparse
1196
+ -------------------
1197
+
1198
+ Authors: Sean McArthur <sean@seanmonstar.com>
1199
+ Source location: https://github.com/seanmonstar/httparse
1200
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1201
+
1202
+ The license texts for this component are reproduced elsewhere in this document.
1203
+
1204
+ Rust crate httpdate
1205
+ -------------------
1206
+
1207
+ Authors: Pyfisch <pyfisch@posteo.org>
1208
+ Source location: https://github.com/pyfisch/httpdate
1209
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1210
+
1211
+ The license texts for this component are reproduced elsewhere in this document.
1212
+
1213
+ Rust crate humantime
1214
+ --------------------
1215
+
1216
+ Authors: Paul Colomiets <paul@colomiets.name>
1217
+ Homepage: https://github.com/tailhook/humantime
1218
+ Source location: https://github.com/tailhook/humantime
1219
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1220
+
1221
+ The license texts for this component are reproduced elsewhere in this document.
1222
+
1223
+ Rust crate hyper
1224
+ ----------------
1225
+
1226
+ Authors: Sean McArthur <sean@seanmonstar.com>
1227
+ Homepage: https://hyper.rs
1228
+ Source location: https://github.com/hyperium/hyper
1229
+ Licensed according to SPDX expression: MIT
1230
+
1231
+ The license texts for this component are reproduced elsewhere in this document.
1232
+
1233
+ Rust crate hyper-rustls
1234
+ -----------------------
1235
+
1236
+ Homepage: https://github.com/rustls/hyper-rustls
1237
+ Source location: https://github.com/rustls/hyper-rustls
1238
+ Licensed according to SPDX expression: Apache-2.0 OR ISC OR MIT
1239
+
1240
+ The license texts for this component are reproduced elsewhere in this document.
1241
+
1242
+ Rust crate iana-time-zone
1243
+ -------------------------
1244
+
1245
+ Authors: Andrew Straw <strawman@astraw.com>, René Kijewski <rene.kijewski@fu-berlin.de>, Ryan Lopopolo <rjl@hyperbo.la>
1246
+ Source location: https://github.com/strawlab/iana-time-zone
1247
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1248
+
1249
+ The license texts for this component are reproduced elsewhere in this document.
1250
+
1251
+ Rust crate idna
1252
+ ---------------
1253
+
1254
+ Authors: The rust-url developers
1255
+ Source location: https://github.com/servo/rust-url/
1256
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1257
+
1258
+ The license texts for this component are reproduced elsewhere in this document.
1259
+
1260
+ Rust crate indexmap
1261
+ -------------------
1262
+
1263
+ Source location: https://github.com/bluss/indexmap
1264
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
1265
+
1266
+ The license texts for this component are reproduced elsewhere in this document.
1267
+
1268
+ Rust crate inlinable_string
1269
+ ---------------------------
1270
+
1271
+ Authors: Nick Fitzgerald <fitzgen@gmail.com>
1272
+ Source location: https://github.com/fitzgen/inlinable_string
1273
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
1274
+
1275
+ The license texts for this component are reproduced elsewhere in this document.
1276
+
1277
+ Rust crate inout
1278
+ ----------------
1279
+
1280
+ Authors: RustCrypto Developers
1281
+ Source location: https://github.com/RustCrypto/utils
1282
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1283
+
1284
+ The license texts for this component are reproduced elsewhere in this document.
1285
+
1286
+ Rust crate ipnet
1287
+ ----------------
1288
+
1289
+ Authors: Kris Price <kris@krisprice.nz>
1290
+ Source location: https://github.com/krisprice/ipnet
1291
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1292
+
1293
+ The license texts for this component are reproduced elsewhere in this document.
1294
+
1295
+ Rust crate is-terminal
1296
+ ----------------------
1297
+
1298
+ Authors: softprops <d.tangren@gmail.com>, Dan Gohman <dev@sunfishcode.online>
1299
+ Source location: https://github.com/sunfishcode/is-terminal
1300
+ Licensed according to SPDX expression: MIT
1301
+
1302
+ The license texts for this component are reproduced elsewhere in this document.
1303
+
1304
+ Rust crate is_executable
1305
+ ------------------------
1306
+
1307
+ Authors: Nick Fitzgerald <fitzgen@gmail.com>
1308
+ Source location: https://github.com/fitzgen/is_executable
1309
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
1310
+
1311
+ The license texts for this component are reproduced elsewhere in this document.
1312
+
1313
+ Rust crate itoa
1314
+ ---------------
1315
+
1316
+ Authors: David Tolnay <dtolnay@gmail.com>
1317
+ Source location: https://github.com/dtolnay/itoa
1318
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1319
+
1320
+ The license texts for this component are reproduced elsewhere in this document.
1321
+
1322
+ Rust crate jsonwebtoken
1323
+ -----------------------
1324
+
1325
+ Authors: Vincent Prouillet <hello@vincentprouillet.com>
1326
+ Homepage: https://github.com/Keats/jsonwebtoken
1327
+ Source location: https://github.com/Keats/jsonwebtoken
1328
+ Licensed according to SPDX expression: MIT
1329
+
1330
+ The license texts for this component are reproduced elsewhere in this document.
1331
+
1332
+ Rust crate jzon
1333
+ ---------------
1334
+
1335
+ Authors: Sandro-Alessio Gierens <sandro@gierens.de>, Maciej Hirsz <hello@maciej.codes>
1336
+ Source location: https://github.com/rustadopt/jzon-rs
1337
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1338
+
1339
+ The license texts for this component are reproduced elsewhere in this document.
1340
+
1341
+ Rust crate konst
1342
+ ----------------
1343
+
1344
+ Authors: rodrimati1992 <rodrimatt1985@gmail.com>
1345
+ Source location: https://github.com/rodrimati1992/konst/
1346
+ Licensed according to SPDX expression: Zlib
1347
+
1348
+ The license texts for this component are reproduced elsewhere in this document.
1349
+
1350
+ Rust crate konst_kernel
1351
+ -----------------------
1352
+
1353
+ Authors: rodrimati1992 <rodrimatt1985@gmail.com>
1354
+ Source location: https://github.com/rodrimati1992/konst/
1355
+ Licensed according to SPDX expression: Zlib
1356
+
1357
+ The license texts for this component are reproduced elsewhere in this document.
1358
+
1359
+ Rust crate lazy_static
1360
+ ----------------------
1361
+
1362
+ Authors: Marvin Löbel <loebel.marvin@gmail.com>
1363
+ Source location: https://github.com/rust-lang-nursery/lazy-static.rs
1364
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1365
+
1366
+ The license texts for this component are reproduced elsewhere in this document.
1367
+
1368
+ Rust crate libc
1369
+ ---------------
1370
+
1371
+ Authors: The Rust Project Developers
1372
+ Homepage: https://github.com/rust-lang/libc
1373
+ Source location: https://github.com/rust-lang/libc
1374
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1375
+
1376
+ The license texts for this component are reproduced elsewhere in this document.
1377
+
1378
+ Rust crate libm
1379
+ ---------------
1380
+
1381
+ Authors: Jorge Aparicio <jorge@japaric.io>
1382
+ Source location: https://github.com/rust-lang/libm
1383
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1384
+
1385
+ The license texts for this component are reproduced elsewhere in this document.
1386
+
1387
+ Rust crate line-wrap
1388
+ --------------------
1389
+
1390
+ Authors: Marshall Pierce <marshall@mpierce.org>
1391
+ Source location: https://bitbucket.org/marshallpierce/line-wrap-rs/src
1392
+ Licensed according to SPDX expression: Apache-2.0
1393
+
1394
+ The license texts for this component are reproduced elsewhere in this document.
1395
+
1396
+ Rust crate linux-raw-sys
1397
+ ------------------------
1398
+
1399
+ Authors: Dan Gohman <dev@sunfishcode.online>
1400
+ Source location: https://github.com/sunfishcode/linux-raw-sys
1401
+ Licensed according to SPDX expression: Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT
1402
+
1403
+ The license texts for this component are reproduced elsewhere in this document.
1404
+
1405
+ In addition to the standard SPDX license, this component has the license exception: LLVM-exception
1406
+ The text of that exception follows.
1407
+
1408
+ ---- LLVM Exceptions to the Apache 2.0 License ----
1409
+
1410
+ As an exception, if, as a result of your compiling your source code, portions
1411
+ of this Software are embedded into an Object form of such source code, you
1412
+ may redistribute such embedded portions in such Object form without complying
1413
+ with the conditions of Sections 4(a), 4(b) and 4(d) of the License.
1414
+
1415
+ In addition, if you combine or link compiled forms of this Software with
1416
+ software that is licensed under the GPLv2 ("Combined Software") and if a
1417
+ court of competent jurisdiction determines that the patent provision (Section
1418
+ 3), the indemnity provision (Section 9) or other Section of the License
1419
+ conflicts with the conditions of the GPLv2, you may retroactively and
1420
+ prospectively choose to deem waived or otherwise exclude such Section(s) of
1421
+ the License, but only in their entirety and only with respect to the Combined
1422
+ Software.
1423
+
1424
+ (end of exception text for LLVM-exception)
1425
+
1426
+ Rust crate log
1427
+ --------------
1428
+
1429
+ Authors: The Rust Project Developers
1430
+ Source location: https://github.com/rust-lang/log
1431
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1432
+
1433
+ The license texts for this component are reproduced elsewhere in this document.
1434
+
1435
+ Rust crate lzma-sys
1436
+ -------------------
1437
+
1438
+ Authors: Alex Crichton <alex@alexcrichton.com>
1439
+ Homepage: https://github.com/alexcrichton/xz2-rs
1440
+ Source location: https://github.com/alexcrichton/xz2-rs
1441
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1442
+
1443
+ The license texts for this component are reproduced elsewhere in this document.
1444
+
1445
+ Rust crate md-5
1446
+ ---------------
1447
+
1448
+ Authors: RustCrypto Developers
1449
+ Source location: https://github.com/RustCrypto/hashes
1450
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1451
+
1452
+ The license texts for this component are reproduced elsewhere in this document.
1453
+
1454
+ Rust crate memchr
1455
+ -----------------
1456
+
1457
+ Authors: Andrew Gallant <jamslam@gmail.com>, bluss
1458
+ Homepage: https://github.com/BurntSushi/memchr
1459
+ Source location: https://github.com/BurntSushi/memchr
1460
+ Licensed according to SPDX expression: Unlicense OR MIT
1461
+
1462
+ The license texts for this component are reproduced elsewhere in this document.
1463
+
1464
+ Rust crate mime
1465
+ ---------------
1466
+
1467
+ Authors: Sean McArthur <sean@seanmonstar.com>
1468
+ Source location: https://github.com/hyperium/mime
1469
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1470
+
1471
+ The license texts for this component are reproduced elsewhere in this document.
1472
+
1473
+ Rust crate minicbor
1474
+ -------------------
1475
+
1476
+ Authors: Toralf Wittner <tw@dtex.org>
1477
+ Source location: https://gitlab.com/twittner/minicbor
1478
+ Licensed according to SPDX expression: BlueOak-1.0.0
1479
+
1480
+ The license texts for this component are reproduced elsewhere in this document.
1481
+
1482
+ Rust crate minicbor-derive
1483
+ --------------------------
1484
+
1485
+ Authors: Toralf Wittner <tw@dtex.org>
1486
+ Source location: https://gitlab.com/twittner/minicbor
1487
+ Licensed according to SPDX expression: BlueOak-1.0.0
1488
+
1489
+ The license texts for this component are reproduced elsewhere in this document.
1490
+
1491
+ Rust crate minimal-lexical
1492
+ --------------------------
1493
+
1494
+ Authors: Alex Huszagh <ahuszagh@gmail.com>
1495
+ Source location: https://github.com/Alexhuszagh/minimal-lexical
1496
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1497
+
1498
+ The license texts for this component are reproduced elsewhere in this document.
1499
+
1500
+ Rust crate miniz_oxide
1501
+ ----------------------
1502
+
1503
+ Authors: Frommi <daniil.liferenko@gmail.com>, oyvindln <oyvindln@users.noreply.github.com>
1504
+ Homepage: https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide
1505
+ Source location: https://github.com/Frommi/miniz_oxide/tree/master/miniz_oxide
1506
+ Licensed according to SPDX expression: MIT OR Zlib OR Apache-2.0
1507
+
1508
+ The license texts for this component are reproduced elsewhere in this document.
1509
+
1510
+ Rust crate mio
1511
+ --------------
1512
+
1513
+ Authors: Carl Lerche <me@carllerche.com>, Thomas de Zeeuw <thomasdezeeuw@gmail.com>, Tokio Contributors <team@tokio.rs>
1514
+ Homepage: https://github.com/tokio-rs/mio
1515
+ Source location: https://github.com/tokio-rs/mio
1516
+ Licensed according to SPDX expression: MIT
1517
+
1518
+ The license texts for this component are reproduced elsewhere in this document.
1519
+
1520
+ Rust crate nom
1521
+ --------------
1522
+
1523
+ Authors: contact@geoffroycouprie.com
1524
+ Source location: https://github.com/Geal/nom
1525
+ Licensed according to SPDX expression: MIT
1526
+
1527
+ The license texts for this component are reproduced elsewhere in this document.
1528
+
1529
+ Rust crate num-bigint
1530
+ ---------------------
1531
+
1532
+ Authors: The Rust Project Developers
1533
+ Homepage: https://github.com/rust-num/num-bigint
1534
+ Source location: https://github.com/rust-num/num-bigint
1535
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1536
+
1537
+ The license texts for this component are reproduced elsewhere in this document.
1538
+
1539
+ Rust crate num-bigint-dig
1540
+ -------------------------
1541
+
1542
+ Authors: dignifiedquire <dignifiedquire@gmail.com>, The Rust Project Developers
1543
+ Homepage: https://github.com/dignifiedquire/num-bigint
1544
+ Source location: https://github.com/dignifiedquire/num-bigint
1545
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1546
+
1547
+ The license texts for this component are reproduced elsewhere in this document.
1548
+
1549
+ Rust crate num-integer
1550
+ ----------------------
1551
+
1552
+ Authors: The Rust Project Developers
1553
+ Homepage: https://github.com/rust-num/num-integer
1554
+ Source location: https://github.com/rust-num/num-integer
1555
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1556
+
1557
+ The license texts for this component are reproduced elsewhere in this document.
1558
+
1559
+ Rust crate num-iter
1560
+ -------------------
1561
+
1562
+ Authors: The Rust Project Developers
1563
+ Homepage: https://github.com/rust-num/num-iter
1564
+ Source location: https://github.com/rust-num/num-iter
1565
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1566
+
1567
+ The license texts for this component are reproduced elsewhere in this document.
1568
+
1569
+ Rust crate num-traits
1570
+ ---------------------
1571
+
1572
+ Authors: The Rust Project Developers
1573
+ Homepage: https://github.com/rust-num/num-traits
1574
+ Source location: https://github.com/rust-num/num-traits
1575
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1576
+
1577
+ The license texts for this component are reproduced elsewhere in this document.
1578
+
1579
+ Rust crate num_cpus
1580
+ -------------------
1581
+
1582
+ Authors: Sean McArthur <sean@seanmonstar.com>
1583
+ Source location: https://github.com/seanmonstar/num_cpus
1584
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1585
+
1586
+ The license texts for this component are reproduced elsewhere in this document.
1587
+
1588
+ Rust crate object
1589
+ -----------------
1590
+
1591
+ Source location: https://github.com/gimli-rs/object
1592
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
1593
+
1594
+ The license texts for this component are reproduced elsewhere in this document.
1595
+
1596
+ Rust crate oid-registry
1597
+ -----------------------
1598
+
1599
+ Authors: Pierre Chifflier <chifflier@wzdftpd.net>
1600
+ Homepage: https://github.com/rusticata/oid-registry
1601
+ Source location: https://github.com/rusticata/oid-registry.git
1602
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1603
+
1604
+ The license texts for this component are reproduced elsewhere in this document.
1605
+
1606
+ Rust crate once_cell
1607
+ --------------------
1608
+
1609
+ Authors: Aleksey Kladov <aleksey.kladov@gmail.com>
1610
+ Source location: https://github.com/matklad/once_cell
1611
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1612
+
1613
+ The license texts for this component are reproduced elsewhere in this document.
1614
+
1615
+ Rust crate openssl-probe
1616
+ ------------------------
1617
+
1618
+ Authors: Alex Crichton <alex@alexcrichton.com>
1619
+ Homepage: https://github.com/alexcrichton/openssl-probe
1620
+ Source location: https://github.com/alexcrichton/openssl-probe
1621
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1622
+
1623
+ The license texts for this component are reproduced elsewhere in this document.
1624
+
1625
+ Rust crate option-ext
1626
+ ---------------------
1627
+
1628
+ Authors: Simon Ochsenreither <simon@ochsenreither.de>
1629
+ Homepage: https://github.com/soc/option-ext
1630
+ Source location: https://github.com/soc/option-ext.git
1631
+ Licensed according to SPDX expression: MPL-2.0
1632
+
1633
+ The license texts for this component are reproduced elsewhere in this document.
1634
+
1635
+ Rust crate outref
1636
+ -----------------
1637
+
1638
+ Source location: https://github.com/Nugine/outref
1639
+ Licensed according to SPDX expression: MIT
1640
+
1641
+ The license texts for this component are reproduced elsewhere in this document.
1642
+
1643
+ Rust crate p12
1644
+ --------------
1645
+
1646
+ Authors: hjiayz <hjiayz@gmail.com>, Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
1647
+ Homepage: https://github.com/hjiayz/p12
1648
+ Source location: https://github.com/hjiayz/p12
1649
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1650
+
1651
+ The license texts for this component are reproduced elsewhere in this document.
1652
+
1653
+ Rust crate p256
1654
+ ---------------
1655
+
1656
+ Authors: RustCrypto Developers
1657
+ Source location: https://github.com/RustCrypto/elliptic-curves/tree/master/p256
1658
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
1659
+
1660
+ The license texts for this component are reproduced elsewhere in this document.
1661
+
1662
+ Rust crate p384
1663
+ ---------------
1664
+
1665
+ Authors: RustCrypto Developers, Frank Denis <github@pureftpd.org>
1666
+ Source location: https://github.com/RustCrypto/elliptic-curves/tree/master/p384
1667
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
1668
+
1669
+ The license texts for this component are reproduced elsewhere in this document.
1670
+
1671
+ Rust crate pbkdf2
1672
+ -----------------
1673
+
1674
+ Authors: RustCrypto Developers
1675
+ Source location: https://github.com/RustCrypto/password-hashes/tree/master/pbkdf2
1676
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1677
+
1678
+ The license texts for this component are reproduced elsewhere in this document.
1679
+
1680
+ Rust crate pcsc
1681
+ ---------------
1682
+
1683
+ Authors: Ran Benita <ran@unusedvar.com>
1684
+ Homepage: https://github.com/bluetech/pcsc-rust
1685
+ Source location: https://github.com/bluetech/pcsc-rust
1686
+ Licensed according to SPDX expression: MIT
1687
+
1688
+ The license texts for this component are reproduced elsewhere in this document.
1689
+
1690
+ Rust crate pcsc-sys
1691
+ -------------------
1692
+
1693
+ Authors: Ran Benita <ran@unusedvar.com>
1694
+ Homepage: https://github.com/bluetech/pcsc-rust
1695
+ Source location: https://github.com/bluetech/pcsc-rust
1696
+ Licensed according to SPDX expression: MIT
1697
+
1698
+ The license texts for this component are reproduced elsewhere in this document.
1699
+
1700
+ Rust crate pear
1701
+ ---------------
1702
+
1703
+ Authors: Sergio Benitez <sb@sergio.bz>
1704
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1705
+
1706
+ The license texts for this component are reproduced elsewhere in this document.
1707
+
1708
+ Rust crate pear_codegen
1709
+ -----------------------
1710
+
1711
+ Authors: Sergio Benitez <sb@sergio.bz>
1712
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1713
+
1714
+ The license texts for this component are reproduced elsewhere in this document.
1715
+
1716
+ Rust crate pem
1717
+ --------------
1718
+
1719
+ Authors: Jonathan Creekmore <jonathan@thecreekmores.org>
1720
+ Homepage: https://github.com/jcreekmore/pem-rs.git
1721
+ Source location: https://github.com/jcreekmore/pem-rs.git
1722
+ Licensed according to SPDX expression: MIT
1723
+
1724
+ The license texts for this component are reproduced elsewhere in this document.
1725
+
1726
+ Rust crate pem-rfc7468
1727
+ ----------------------
1728
+
1729
+ Authors: RustCrypto Developers
1730
+ Source location: https://github.com/RustCrypto/formats/tree/master/pem-rfc7468
1731
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
1732
+
1733
+ The license texts for this component are reproduced elsewhere in this document.
1734
+
1735
+ Rust crate percent-encoding
1736
+ ---------------------------
1737
+
1738
+ Authors: The rust-url developers
1739
+ Source location: https://github.com/servo/rust-url/
1740
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1741
+
1742
+ The license texts for this component are reproduced elsewhere in this document.
1743
+
1744
+ Rust crate pin-project-lite
1745
+ ---------------------------
1746
+
1747
+ Source location: https://github.com/taiki-e/pin-project-lite
1748
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
1749
+
1750
+ The license texts for this component are reproduced elsewhere in this document.
1751
+
1752
+ Rust crate pin-utils
1753
+ --------------------
1754
+
1755
+ Authors: Josef Brandl <mail@josefbrandl.de>
1756
+ Source location: https://github.com/rust-lang-nursery/pin-utils
1757
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1758
+
1759
+ The license texts for this component are reproduced elsewhere in this document.
1760
+
1761
+ Rust crate pkcs1
1762
+ ----------------
1763
+
1764
+ Authors: RustCrypto Developers
1765
+ Source location: https://github.com/RustCrypto/formats/tree/master/pkcs1
1766
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
1767
+
1768
+ The license texts for this component are reproduced elsewhere in this document.
1769
+
1770
+ Rust crate pkcs8
1771
+ ----------------
1772
+
1773
+ Authors: RustCrypto Developers
1774
+ Source location: https://github.com/RustCrypto/formats/tree/master/pkcs8
1775
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
1776
+
1777
+ The license texts for this component are reproduced elsewhere in this document.
1778
+
1779
+ Rust crate plain
1780
+ ----------------
1781
+
1782
+ Authors: jzr
1783
+ Homepage: https://github.com/randomites/plain
1784
+ Source location: https://github.com/randomites/plain
1785
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1786
+
1787
+ The license texts for this component are reproduced elsewhere in this document.
1788
+
1789
+ Rust crate plist
1790
+ ----------------
1791
+
1792
+ Authors: Ed Barnard <eabarnard@gmail.com>
1793
+ Source location: https://github.com/ebarnard/rust-plist/
1794
+ Licensed according to SPDX expression: MIT
1795
+
1796
+ The license texts for this component are reproduced elsewhere in this document.
1797
+
1798
+ Rust crate powerfmt
1799
+ -------------------
1800
+
1801
+ Authors: Jacob Pratt <jacob@jhpratt.dev>
1802
+ Source location: https://github.com/jhpratt/powerfmt
1803
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1804
+
1805
+ The license texts for this component are reproduced elsewhere in this document.
1806
+
1807
+ Rust crate ppv-lite86
1808
+ ---------------------
1809
+
1810
+ Authors: The CryptoCorrosion Contributors
1811
+ Source location: https://github.com/cryptocorrosion/cryptocorrosion
1812
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1813
+
1814
+ The license texts for this component are reproduced elsewhere in this document.
1815
+
1816
+ Rust crate primeorder
1817
+ ---------------------
1818
+
1819
+ Authors: RustCrypto Developers
1820
+ Source location: https://github.com/RustCrypto/elliptic-curves/tree/master/primeorder
1821
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
1822
+
1823
+ The license texts for this component are reproduced elsewhere in this document.
1824
+
1825
+ Rust crate quick-xml
1826
+ --------------------
1827
+
1828
+ Source location: https://github.com/tafia/quick-xml
1829
+ Licensed according to SPDX expression: MIT
1830
+
1831
+ The license texts for this component are reproduced elsewhere in this document.
1832
+
1833
+ Rust crate radium
1834
+ -----------------
1835
+
1836
+ Authors: Nika Layzell <nika@thelayzells.com>, myrrlyn <self@myrrlyn.dev>
1837
+ Homepage: https://github.com/bitvecto-rs/radium
1838
+ Source location: https://github.com/bitvecto-rs/radium
1839
+ Licensed according to SPDX expression: MIT
1840
+
1841
+ The license texts for this component are reproduced elsewhere in this document.
1842
+
1843
+ Rust crate rand
1844
+ ---------------
1845
+
1846
+ Authors: The Rand Project Developers, The Rust Project Developers
1847
+ Homepage: https://rust-random.github.io/book
1848
+ Source location: https://github.com/rust-random/rand
1849
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1850
+
1851
+ The license texts for this component are reproduced elsewhere in this document.
1852
+
1853
+ Rust crate rand_chacha
1854
+ ----------------------
1855
+
1856
+ Authors: The Rand Project Developers, The Rust Project Developers, The CryptoCorrosion Contributors
1857
+ Homepage: https://rust-random.github.io/book
1858
+ Source location: https://github.com/rust-random/rand
1859
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1860
+
1861
+ The license texts for this component are reproduced elsewhere in this document.
1862
+
1863
+ Rust crate rand_core
1864
+ --------------------
1865
+
1866
+ Authors: The Rand Project Developers, The Rust Project Developers
1867
+ Homepage: https://rust-random.github.io/book
1868
+ Source location: https://github.com/rust-random/rand
1869
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1870
+
1871
+ The license texts for this component are reproduced elsewhere in this document.
1872
+
1873
+ Rust crate rasn
1874
+ ---------------
1875
+
1876
+ Source location: https://github.com/XAMPPRocky/rasn.git
1877
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1878
+
1879
+ The license texts for this component are reproduced elsewhere in this document.
1880
+
1881
+ Rust crate rasn-derive
1882
+ ----------------------
1883
+
1884
+ Source location: https://github.com/XAMPPRocky/rasn.git
1885
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1886
+
1887
+ The license texts for this component are reproduced elsewhere in this document.
1888
+
1889
+ Rust crate rayon
1890
+ ----------------
1891
+
1892
+ Authors: Niko Matsakis <niko@alum.mit.edu>, Josh Stone <cuviper@gmail.com>
1893
+ Source location: https://github.com/rayon-rs/rayon
1894
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1895
+
1896
+ The license texts for this component are reproduced elsewhere in this document.
1897
+
1898
+ Rust crate rayon-core
1899
+ ---------------------
1900
+
1901
+ Authors: Niko Matsakis <niko@alum.mit.edu>, Josh Stone <cuviper@gmail.com>
1902
+ Source location: https://github.com/rayon-rs/rayon
1903
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1904
+
1905
+ The license texts for this component are reproduced elsewhere in this document.
1906
+
1907
+ Rust crate rc2
1908
+ --------------
1909
+
1910
+ Authors: RustCrypto Developers
1911
+ Source location: https://github.com/RustCrypto/block-ciphers
1912
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1913
+
1914
+ The license texts for this component are reproduced elsewhere in this document.
1915
+
1916
+ Rust crate regex
1917
+ ----------------
1918
+
1919
+ Authors: The Rust Project Developers, Andrew Gallant <jamslam@gmail.com>
1920
+ Homepage: https://github.com/rust-lang/regex
1921
+ Source location: https://github.com/rust-lang/regex
1922
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1923
+
1924
+ The license texts for this component are reproduced elsewhere in this document.
1925
+
1926
+ Rust crate regex-automata
1927
+ -------------------------
1928
+
1929
+ Authors: The Rust Project Developers, Andrew Gallant <jamslam@gmail.com>
1930
+ Source location: https://github.com/rust-lang/regex/tree/master/regex-automata
1931
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1932
+
1933
+ The license texts for this component are reproduced elsewhere in this document.
1934
+
1935
+ Rust crate regex-lite
1936
+ ---------------------
1937
+
1938
+ Authors: The Rust Project Developers, Andrew Gallant <jamslam@gmail.com>
1939
+ Source location: https://github.com/rust-lang/regex/tree/master/regex-lite
1940
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1941
+
1942
+ The license texts for this component are reproduced elsewhere in this document.
1943
+
1944
+ Rust crate regex-syntax
1945
+ -----------------------
1946
+
1947
+ Authors: The Rust Project Developers, Andrew Gallant <jamslam@gmail.com>
1948
+ Source location: https://github.com/rust-lang/regex/tree/master/regex-syntax
1949
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1950
+
1951
+ The license texts for this component are reproduced elsewhere in this document.
1952
+
1953
+ Rust crate reqwest
1954
+ ------------------
1955
+
1956
+ Authors: Sean McArthur <sean@seanmonstar.com>
1957
+ Source location: https://github.com/seanmonstar/reqwest
1958
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1959
+
1960
+ The license texts for this component are reproduced elsewhere in this document.
1961
+
1962
+ Rust crate rfc6979
1963
+ ------------------
1964
+
1965
+ Authors: RustCrypto Developers
1966
+ Source location: https://github.com/RustCrypto/signatures/tree/master/rfc6979
1967
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
1968
+
1969
+ The license texts for this component are reproduced elsewhere in this document.
1970
+
1971
+ Rust crate ring
1972
+ ---------------
1973
+
1974
+ Authors: Brian Smith <brian@briansmith.org>
1975
+ Source location: https://github.com/briansmith/ring
1976
+ No licensing information available.
1977
+
1978
+
1979
+ Rust crate rsa
1980
+ --------------
1981
+
1982
+ Authors: RustCrypto Developers, dignifiedquire <dignifiedquire@gmail.com>
1983
+ Source location: https://github.com/RustCrypto/RSA
1984
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1985
+
1986
+ The license texts for this component are reproduced elsewhere in this document.
1987
+
1988
+ Rust crate rustc-demangle
1989
+ -------------------------
1990
+
1991
+ Authors: Alex Crichton <alex@alexcrichton.com>
1992
+ Homepage: https://github.com/alexcrichton/rustc-demangle
1993
+ Source location: https://github.com/alexcrichton/rustc-demangle
1994
+ Licensed according to SPDX expression: MIT OR Apache-2.0
1995
+
1996
+ The license texts for this component are reproduced elsewhere in this document.
1997
+
1998
+ Rust crate rusticata-macros
1999
+ ---------------------------
2000
+
2001
+ Authors: Pierre Chifflier <chifflier@wzdftpd.net>
2002
+ Homepage: https://github.com/rusticata/rusticata-macros
2003
+ Source location: https://github.com/rusticata/rusticata-macros.git
2004
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2005
+
2006
+ The license texts for this component are reproduced elsewhere in this document.
2007
+
2008
+ Rust crate rustix
2009
+ -----------------
2010
+
2011
+ Authors: Dan Gohman <dev@sunfishcode.online>, Jakub Konka <kubkon@jakubkonka.com>
2012
+ Source location: https://github.com/bytecodealliance/rustix
2013
+ Licensed according to SPDX expression: Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT
2014
+
2015
+ The license texts for this component are reproduced elsewhere in this document.
2016
+
2017
+ In addition to the standard SPDX license, this component has the license exception: LLVM-exception
2018
+ The text of that exception follows.
2019
+
2020
+ ---- LLVM Exceptions to the Apache 2.0 License ----
2021
+
2022
+ As an exception, if, as a result of your compiling your source code, portions
2023
+ of this Software are embedded into an Object form of such source code, you
2024
+ may redistribute such embedded portions in such Object form without complying
2025
+ with the conditions of Sections 4(a), 4(b) and 4(d) of the License.
2026
+
2027
+ In addition, if you combine or link compiled forms of this Software with
2028
+ software that is licensed under the GPLv2 ("Combined Software") and if a
2029
+ court of competent jurisdiction determines that the patent provision (Section
2030
+ 3), the indemnity provision (Section 9) or other Section of the License
2031
+ conflicts with the conditions of the GPLv2, you may retroactively and
2032
+ prospectively choose to deem waived or otherwise exclude such Section(s) of
2033
+ the License, but only in their entirety and only with respect to the Combined
2034
+ Software.
2035
+
2036
+ (end of exception text for LLVM-exception)
2037
+
2038
+ Rust crate rustls
2039
+ -----------------
2040
+
2041
+ Homepage: https://github.com/rustls/rustls
2042
+ Source location: https://github.com/rustls/rustls
2043
+ Licensed according to SPDX expression: Apache-2.0 OR ISC OR MIT
2044
+
2045
+ The license texts for this component are reproduced elsewhere in this document.
2046
+
2047
+ Rust crate rustls-native-certs
2048
+ ------------------------------
2049
+
2050
+ Homepage: https://github.com/rustls/rustls-native-certs
2051
+ Source location: https://github.com/rustls/rustls-native-certs
2052
+ Licensed according to SPDX expression: Apache-2.0 OR ISC OR MIT
2053
+
2054
+ The license texts for this component are reproduced elsewhere in this document.
2055
+
2056
+ Rust crate rustls-pemfile
2057
+ -------------------------
2058
+
2059
+ Homepage: https://github.com/rustls/pemfile
2060
+ Source location: https://github.com/rustls/pemfile
2061
+ Licensed according to SPDX expression: Apache-2.0 OR ISC OR MIT
2062
+
2063
+ The license texts for this component are reproduced elsewhere in this document.
2064
+
2065
+ Rust crate rustls-pki-types
2066
+ ---------------------------
2067
+
2068
+ Homepage: https://github.com/rustls/pki-types
2069
+ Source location: https://github.com/rustls/pki-types
2070
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2071
+
2072
+ The license texts for this component are reproduced elsewhere in this document.
2073
+
2074
+ Rust crate rustls-webpki
2075
+ ------------------------
2076
+
2077
+ Source location: https://github.com/rustls/webpki
2078
+ Licensed according to SPDX expression: ISC
2079
+
2080
+ The license texts for this component are reproduced elsewhere in this document.
2081
+
2082
+ Rust crate ruzstd
2083
+ -----------------
2084
+
2085
+ Authors: Moritz Borcherding <moritz.borcherding@web.de>
2086
+ Homepage: https://github.com/KillingSpark/zstd-rs
2087
+ Source location: https://github.com/KillingSpark/zstd-rs
2088
+ Licensed according to SPDX expression: MIT
2089
+
2090
+ The license texts for this component are reproduced elsewhere in this document.
2091
+
2092
+ Rust crate ryu
2093
+ --------------
2094
+
2095
+ Authors: David Tolnay <dtolnay@gmail.com>
2096
+ Source location: https://github.com/dtolnay/ryu
2097
+ Licensed according to SPDX expression: Apache-2.0 OR BSL-1.0
2098
+
2099
+ The license texts for this component are reproduced elsewhere in this document.
2100
+
2101
+ Rust crate safemem
2102
+ ------------------
2103
+
2104
+ Authors: Austin Bonander <austin.bonander@gmail.com>
2105
+ Source location: https://github.com/abonander/safemem
2106
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2107
+
2108
+ The license texts for this component are reproduced elsewhere in this document.
2109
+
2110
+ Rust crate same-file
2111
+ --------------------
2112
+
2113
+ Authors: Andrew Gallant <jamslam@gmail.com>
2114
+ Homepage: https://github.com/BurntSushi/same-file
2115
+ Source location: https://github.com/BurntSushi/same-file
2116
+ Licensed according to SPDX expression: Unlicense OR MIT
2117
+
2118
+ The license texts for this component are reproduced elsewhere in this document.
2119
+
2120
+ Rust crate scroll
2121
+ -----------------
2122
+
2123
+ Authors: m4b <m4b.github.io@gmail.com>, Ted Mielczarek <ted@mielczarek.org>
2124
+ Source location: https://github.com/m4b/scroll
2125
+ Licensed according to SPDX expression: MIT
2126
+
2127
+ The license texts for this component are reproduced elsewhere in this document.
2128
+
2129
+ Rust crate scroll_derive
2130
+ ------------------------
2131
+
2132
+ Authors: m4b <m4b.github.io@gmail.com>, Ted Mielczarek <ted@mielczarek.org>, Systemcluster <me@systemcluster.me>
2133
+ Source location: https://github.com/m4b/scroll
2134
+ Licensed according to SPDX expression: MIT
2135
+
2136
+ The license texts for this component are reproduced elsewhere in this document.
2137
+
2138
+ Rust crate sct
2139
+ --------------
2140
+
2141
+ Authors: Joseph Birr-Pixton <jpixton@gmail.com>
2142
+ Homepage: https://github.com/rustls/sct.rs
2143
+ Source location: https://github.com/rustls/sct.rs
2144
+ Licensed according to SPDX expression: Apache-2.0 OR ISC OR MIT
2145
+
2146
+ The license texts for this component are reproduced elsewhere in this document.
2147
+
2148
+ Rust crate sec1
2149
+ ---------------
2150
+
2151
+ Authors: RustCrypto Developers
2152
+ Source location: https://github.com/RustCrypto/formats/tree/master/sec1
2153
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
2154
+
2155
+ The license texts for this component are reproduced elsewhere in this document.
2156
+
2157
+ Rust crate secrecy
2158
+ ------------------
2159
+
2160
+ Authors: Tony Arcieri <tony@iqlusion.io>
2161
+ Homepage: https://github.com/iqlusioninc/crates/
2162
+ Source location: https://github.com/iqlusioninc/crates/tree/main/secrecy
2163
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
2164
+
2165
+ The license texts for this component are reproduced elsewhere in this document.
2166
+
2167
+ Rust crate semver
2168
+ -----------------
2169
+
2170
+ Authors: David Tolnay <dtolnay@gmail.com>
2171
+ Source location: https://github.com/dtolnay/semver
2172
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2173
+
2174
+ The license texts for this component are reproduced elsewhere in this document.
2175
+
2176
+ Rust crate serde
2177
+ ----------------
2178
+
2179
+ Authors: Erick Tryzelaar <erick.tryzelaar@gmail.com>, David Tolnay <dtolnay@gmail.com>
2180
+ Homepage: https://serde.rs
2181
+ Source location: https://github.com/serde-rs/serde
2182
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2183
+
2184
+ The license texts for this component are reproduced elsewhere in this document.
2185
+
2186
+ Rust crate serde-xml-rs
2187
+ -----------------------
2188
+
2189
+ Authors: Ingvar Stepanyan <me@rreverser.com>
2190
+ Source location: https://github.com/RReverser/serde-xml-rs
2191
+ Licensed according to SPDX expression: MIT
2192
+
2193
+ The license texts for this component are reproduced elsewhere in this document.
2194
+
2195
+ Rust crate serde_derive
2196
+ -----------------------
2197
+
2198
+ Authors: Erick Tryzelaar <erick.tryzelaar@gmail.com>, David Tolnay <dtolnay@gmail.com>
2199
+ Homepage: https://serde.rs
2200
+ Source location: https://github.com/serde-rs/serde
2201
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2202
+
2203
+ The license texts for this component are reproduced elsewhere in this document.
2204
+
2205
+ Rust crate serde_json
2206
+ ---------------------
2207
+
2208
+ Authors: Erick Tryzelaar <erick.tryzelaar@gmail.com>, David Tolnay <dtolnay@gmail.com>
2209
+ Source location: https://github.com/serde-rs/json
2210
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2211
+
2212
+ The license texts for this component are reproduced elsewhere in this document.
2213
+
2214
+ Rust crate serde_spanned
2215
+ ------------------------
2216
+
2217
+ Homepage: https://github.com/toml-rs/toml
2218
+ Source location: https://github.com/toml-rs/toml
2219
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2220
+
2221
+ The license texts for this component are reproduced elsewhere in this document.
2222
+
2223
+ Rust crate serde_urlencoded
2224
+ ---------------------------
2225
+
2226
+ Authors: Anthony Ramine <n.oxyde@gmail.com>
2227
+ Source location: https://github.com/nox/serde_urlencoded
2228
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2229
+
2230
+ The license texts for this component are reproduced elsewhere in this document.
2231
+
2232
+ Rust crate serde_yaml
2233
+ ---------------------
2234
+
2235
+ Authors: David Tolnay <dtolnay@gmail.com>
2236
+ Source location: https://github.com/dtolnay/serde-yaml
2237
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2238
+
2239
+ The license texts for this component are reproduced elsewhere in this document.
2240
+
2241
+ Rust crate sha1
2242
+ ---------------
2243
+
2244
+ Authors: RustCrypto Developers
2245
+ Source location: https://github.com/RustCrypto/hashes
2246
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2247
+
2248
+ The license texts for this component are reproduced elsewhere in this document.
2249
+
2250
+ Rust crate sha2
2251
+ ---------------
2252
+
2253
+ Authors: RustCrypto Developers
2254
+ Source location: https://github.com/RustCrypto/hashes
2255
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2256
+
2257
+ The license texts for this component are reproduced elsewhere in this document.
2258
+
2259
+ Rust crate shell-words
2260
+ ----------------------
2261
+
2262
+ Authors: Tomasz Miąsko <tomasz.miasko@gmail.com>
2263
+ Source location: https://github.com/tmiasko/shell-words
2264
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2265
+
2266
+ The license texts for this component are reproduced elsewhere in this document.
2267
+
2268
+ Rust crate signal-hook-registry
2269
+ -------------------------------
2270
+
2271
+ Authors: Michal 'vorner' Vaner <vorner@vorner.cz>, Masaki Hara <ackie.h.gmai@gmail.com>
2272
+ Source location: https://github.com/vorner/signal-hook
2273
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
2274
+
2275
+ The license texts for this component are reproduced elsewhere in this document.
2276
+
2277
+ Rust crate signature
2278
+ --------------------
2279
+
2280
+ Authors: RustCrypto Developers
2281
+ Source location: https://github.com/RustCrypto/traits/tree/master/signature
2282
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
2283
+
2284
+ The license texts for this component are reproduced elsewhere in this document.
2285
+
2286
+ Rust crate simple-file-manifest
2287
+ -------------------------------
2288
+
2289
+ Authors: Gregory Szorc <gregory.szorc@gmail.com>
2290
+ Homepage: https://github.com/indygreg/simple-file-manifest-rs
2291
+ Source location: https://github.com/indygreg/simple-file-manifest-rs.git
2292
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2293
+
2294
+ The license texts for this component are reproduced elsewhere in this document.
2295
+
2296
+ Rust crate simple_asn1
2297
+ ----------------------
2298
+
2299
+ Authors: Adam Wick <awick@uhsure.com>
2300
+ Source location: https://github.com/acw/simple_asn1
2301
+ Licensed according to SPDX expression: ISC
2302
+
2303
+ The license texts for this component are reproduced elsewhere in this document.
2304
+
2305
+ Rust crate slab
2306
+ ---------------
2307
+
2308
+ Authors: Carl Lerche <me@carllerche.com>
2309
+ Source location: https://github.com/tokio-rs/slab
2310
+ Licensed according to SPDX expression: MIT
2311
+
2312
+ The license texts for this component are reproduced elsewhere in this document.
2313
+
2314
+ Rust crate smallvec
2315
+ -------------------
2316
+
2317
+ Authors: The Servo Project Developers
2318
+ Source location: https://github.com/servo/rust-smallvec
2319
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2320
+
2321
+ The license texts for this component are reproduced elsewhere in this document.
2322
+
2323
+ Rust crate snafu
2324
+ ----------------
2325
+
2326
+ Authors: Jake Goulding <jake.goulding@gmail.com>
2327
+ Source location: https://github.com/shepmaster/snafu
2328
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2329
+
2330
+ The license texts for this component are reproduced elsewhere in this document.
2331
+
2332
+ Rust crate snafu-derive
2333
+ -----------------------
2334
+
2335
+ Authors: Jake Goulding <jake.goulding@gmail.com>
2336
+ Source location: https://github.com/shepmaster/snafu
2337
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2338
+
2339
+ The license texts for this component are reproduced elsewhere in this document.
2340
+
2341
+ Rust crate socket2
2342
+ ------------------
2343
+
2344
+ Authors: Alex Crichton <alex@alexcrichton.com>, Thomas de Zeeuw <thomasdezeeuw@gmail.com>
2345
+ Homepage: https://github.com/rust-lang/socket2
2346
+ Source location: https://github.com/rust-lang/socket2
2347
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2348
+
2349
+ The license texts for this component are reproduced elsewhere in this document.
2350
+
2351
+ Rust crate spake2
2352
+ -----------------
2353
+
2354
+ Authors: Brian Warner <warner@lothar.com>
2355
+ Homepage: https://github.com/RustCrypto/PAKEs
2356
+ Source location: https://github.com/RustCrypto/PAKEs/tree/master/spake2
2357
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2358
+
2359
+ The license texts for this component are reproduced elsewhere in this document.
2360
+
2361
+ Rust crate spin
2362
+ ---------------
2363
+
2364
+ Authors: Mathijs van de Nes <git@mathijs.vd-nes.nl>, John Ericson <git@JohnEricson.me>, Joshua Barretto <joshua.s.barretto@gmail.com>
2365
+ Source location: https://github.com/mvdnes/spin-rs.git
2366
+ Licensed according to SPDX expression: MIT
2367
+
2368
+ The license texts for this component are reproduced elsewhere in this document.
2369
+
2370
+ Rust crate spki
2371
+ ---------------
2372
+
2373
+ Authors: RustCrypto Developers
2374
+ Source location: https://github.com/RustCrypto/formats/tree/master/spki
2375
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
2376
+
2377
+ The license texts for this component are reproduced elsewhere in this document.
2378
+
2379
+ Rust crate static_assertions
2380
+ ----------------------------
2381
+
2382
+ Authors: Nikolai Vazquez
2383
+ Homepage: https://github.com/nvzqz/static-assertions-rs
2384
+ Source location: https://github.com/nvzqz/static-assertions-rs
2385
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2386
+
2387
+ The license texts for this component are reproduced elsewhere in this document.
2388
+
2389
+ Rust crate strsim
2390
+ -----------------
2391
+
2392
+ Authors: Danny Guo <danny@dannyguo.com>
2393
+ Homepage: https://github.com/dguo/strsim-rs
2394
+ Source location: https://github.com/dguo/strsim-rs
2395
+ Licensed according to SPDX expression: MIT
2396
+
2397
+ The license texts for this component are reproduced elsewhere in this document.
2398
+
2399
+ Rust crate subtle
2400
+ -----------------
2401
+
2402
+ Authors: Isis Lovecruft <isis@patternsinthevoid.net>, Henry de Valence <hdevalence@hdevalence.ca>
2403
+ Homepage: https://dalek.rs/
2404
+ Source location: https://github.com/dalek-cryptography/subtle
2405
+ Licensed according to SPDX expression: BSD-3-Clause
2406
+
2407
+ The license texts for this component are reproduced elsewhere in this document.
2408
+
2409
+ Rust crate tap
2410
+ --------------
2411
+
2412
+ Authors: Elliott Linder <elliott.darfink@gmail.com>, myrrlyn <self@myrrlyn.dev>
2413
+ Homepage: https://github.com/myrrlyn/tap
2414
+ Source location: https://github.com/myrrlyn/tap
2415
+ Licensed according to SPDX expression: MIT
2416
+
2417
+ The license texts for this component are reproduced elsewhere in this document.
2418
+
2419
+ Rust crate tempfile
2420
+ -------------------
2421
+
2422
+ Authors: Steven Allen <steven@stebalien.com>, The Rust Project Developers, Ashley Mannix <ashleymannix@live.com.au>, Jason White <me@jasonwhite.io>
2423
+ Homepage: https://stebalien.com/projects/tempfile-rs/
2424
+ Source location: https://github.com/Stebalien/tempfile
2425
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2426
+
2427
+ The license texts for this component are reproduced elsewhere in this document.
2428
+
2429
+ Rust crate termcolor
2430
+ --------------------
2431
+
2432
+ Authors: Andrew Gallant <jamslam@gmail.com>
2433
+ Homepage: https://github.com/BurntSushi/termcolor
2434
+ Source location: https://github.com/BurntSushi/termcolor
2435
+ Licensed according to SPDX expression: Unlicense OR MIT
2436
+
2437
+ The license texts for this component are reproduced elsewhere in this document.
2438
+
2439
+ Rust crate thiserror
2440
+ --------------------
2441
+
2442
+ Authors: David Tolnay <dtolnay@gmail.com>
2443
+ Source location: https://github.com/dtolnay/thiserror
2444
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2445
+
2446
+ The license texts for this component are reproduced elsewhere in this document.
2447
+
2448
+ Rust crate thiserror-impl
2449
+ -------------------------
2450
+
2451
+ Authors: David Tolnay <dtolnay@gmail.com>
2452
+ Source location: https://github.com/dtolnay/thiserror
2453
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2454
+
2455
+ The license texts for this component are reproduced elsewhere in this document.
2456
+
2457
+ Rust crate time
2458
+ ---------------
2459
+
2460
+ Authors: Jacob Pratt <open-source@jhpratt.dev>, Time contributors
2461
+ Homepage: https://time-rs.github.io
2462
+ Source location: https://github.com/time-rs/time
2463
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2464
+
2465
+ The license texts for this component are reproduced elsewhere in this document.
2466
+
2467
+ Rust crate time-core
2468
+ --------------------
2469
+
2470
+ Authors: Jacob Pratt <open-source@jhpratt.dev>, Time contributors
2471
+ Source location: https://github.com/time-rs/time
2472
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2473
+
2474
+ The license texts for this component are reproduced elsewhere in this document.
2475
+
2476
+ Rust crate time-macros
2477
+ ----------------------
2478
+
2479
+ Authors: Jacob Pratt <open-source@jhpratt.dev>, Time contributors
2480
+ Source location: https://github.com/time-rs/time
2481
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2482
+
2483
+ The license texts for this component are reproduced elsewhere in this document.
2484
+
2485
+ Rust crate tinyvec
2486
+ ------------------
2487
+
2488
+ Authors: Lokathor <zefria@gmail.com>
2489
+ Source location: https://github.com/Lokathor/tinyvec
2490
+ Licensed according to SPDX expression: Zlib OR Apache-2.0 OR MIT
2491
+
2492
+ The license texts for this component are reproduced elsewhere in this document.
2493
+
2494
+ Rust crate tinyvec_macros
2495
+ -------------------------
2496
+
2497
+ Authors: Soveu <marx.tomasz@gmail.com>
2498
+ Source location: https://github.com/Soveu/tinyvec_macros
2499
+ Licensed according to SPDX expression: MIT OR Apache-2.0 OR Zlib
2500
+
2501
+ The license texts for this component are reproduced elsewhere in this document.
2502
+
2503
+ Rust crate tokio
2504
+ ----------------
2505
+
2506
+ Authors: Tokio Contributors <team@tokio.rs>
2507
+ Homepage: https://tokio.rs
2508
+ Source location: https://github.com/tokio-rs/tokio
2509
+ Licensed according to SPDX expression: MIT
2510
+
2511
+ The license texts for this component are reproduced elsewhere in this document.
2512
+
2513
+ Rust crate tokio-rustls
2514
+ -----------------------
2515
+
2516
+ Homepage: https://github.com/rustls/tokio-rustls
2517
+ Source location: https://github.com/rustls/tokio-rustls
2518
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2519
+
2520
+ The license texts for this component are reproduced elsewhere in this document.
2521
+
2522
+ Rust crate tokio-util
2523
+ ---------------------
2524
+
2525
+ Authors: Tokio Contributors <team@tokio.rs>
2526
+ Homepage: https://tokio.rs
2527
+ Source location: https://github.com/tokio-rs/tokio
2528
+ Licensed according to SPDX expression: MIT
2529
+
2530
+ The license texts for this component are reproduced elsewhere in this document.
2531
+
2532
+ Rust crate toml
2533
+ ---------------
2534
+
2535
+ Authors: Alex Crichton <alex@alexcrichton.com>
2536
+ Homepage: https://github.com/toml-rs/toml
2537
+ Source location: https://github.com/toml-rs/toml
2538
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2539
+
2540
+ The license texts for this component are reproduced elsewhere in this document.
2541
+
2542
+ Rust crate toml_datetime
2543
+ ------------------------
2544
+
2545
+ Authors: Alex Crichton <alex@alexcrichton.com>
2546
+ Homepage: https://github.com/toml-rs/toml
2547
+ Source location: https://github.com/toml-rs/toml
2548
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2549
+
2550
+ The license texts for this component are reproduced elsewhere in this document.
2551
+
2552
+ Rust crate toml_edit
2553
+ --------------------
2554
+
2555
+ Authors: Andronik Ordian <write@reusable.software>, Ed Page <eopage@gmail.com>
2556
+ Source location: https://github.com/toml-rs/toml
2557
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2558
+
2559
+ The license texts for this component are reproduced elsewhere in this document.
2560
+
2561
+ Rust crate tower-service
2562
+ ------------------------
2563
+
2564
+ Authors: Tower Maintainers <team@tower-rs.com>
2565
+ Homepage: https://github.com/tower-rs/tower
2566
+ Source location: https://github.com/tower-rs/tower
2567
+ Licensed according to SPDX expression: MIT
2568
+
2569
+ The license texts for this component are reproduced elsewhere in this document.
2570
+
2571
+ Rust crate tracing
2572
+ ------------------
2573
+
2574
+ Authors: Eliza Weisman <eliza@buoyant.io>, Tokio Contributors <team@tokio.rs>
2575
+ Homepage: https://tokio.rs
2576
+ Source location: https://github.com/tokio-rs/tracing
2577
+ Licensed according to SPDX expression: MIT
2578
+
2579
+ The license texts for this component are reproduced elsewhere in this document.
2580
+
2581
+ Rust crate tracing-attributes
2582
+ -----------------------------
2583
+
2584
+ Authors: Tokio Contributors <team@tokio.rs>, Eliza Weisman <eliza@buoyant.io>, David Barsky <dbarsky@amazon.com>
2585
+ Homepage: https://tokio.rs
2586
+ Source location: https://github.com/tokio-rs/tracing
2587
+ Licensed according to SPDX expression: MIT
2588
+
2589
+ The license texts for this component are reproduced elsewhere in this document.
2590
+
2591
+ Rust crate tracing-core
2592
+ -----------------------
2593
+
2594
+ Authors: Tokio Contributors <team@tokio.rs>
2595
+ Homepage: https://tokio.rs
2596
+ Source location: https://github.com/tokio-rs/tracing
2597
+ Licensed according to SPDX expression: MIT
2598
+
2599
+ The license texts for this component are reproduced elsewhere in this document.
2600
+
2601
+ Rust crate try-lock
2602
+ -------------------
2603
+
2604
+ Authors: Sean McArthur <sean@seanmonstar.com>
2605
+ Homepage: https://github.com/seanmonstar/try-lock
2606
+ Source location: https://github.com/seanmonstar/try-lock
2607
+ Licensed according to SPDX expression: MIT
2608
+
2609
+ The license texts for this component are reproduced elsewhere in this document.
2610
+
2611
+ Rust crate tungstenite
2612
+ ----------------------
2613
+
2614
+ Authors: Alexey Galakhov, Daniel Abramov
2615
+ Homepage: https://github.com/snapview/tungstenite-rs
2616
+ Source location: https://github.com/snapview/tungstenite-rs
2617
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2618
+
2619
+ The license texts for this component are reproduced elsewhere in this document.
2620
+
2621
+ Rust crate twox-hash
2622
+ --------------------
2623
+
2624
+ Authors: Jake Goulding <jake.goulding@gmail.com>
2625
+ Source location: https://github.com/shepmaster/twox-hash
2626
+ Licensed according to SPDX expression: MIT
2627
+
2628
+ The license texts for this component are reproduced elsewhere in this document.
2629
+
2630
+ Rust crate typenum
2631
+ ------------------
2632
+
2633
+ Authors: Paho Lurie-Gregg <paho@paholg.com>, Andre Bogus <bogusandre@gmail.com>
2634
+ Source location: https://github.com/paholg/typenum
2635
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2636
+
2637
+ The license texts for this component are reproduced elsewhere in this document.
2638
+
2639
+ Rust crate typewit
2640
+ ------------------
2641
+
2642
+ Authors: rodrimati1992 <rodrimatt1985@gmail.com>
2643
+ Source location: https://github.com/rodrimati1992/typewit/
2644
+ Licensed according to SPDX expression: Zlib
2645
+
2646
+ The license texts for this component are reproduced elsewhere in this document.
2647
+
2648
+ Rust crate typewit_proc_macros
2649
+ ------------------------------
2650
+
2651
+ Authors: rodrimati1992 <rodrimatt1985@gmail.com>
2652
+ Source location: https://github.com/rodrimati1992/typewit/
2653
+ Licensed according to SPDX expression: Zlib
2654
+
2655
+ The license texts for this component are reproduced elsewhere in this document.
2656
+
2657
+ Rust crate uncased
2658
+ ------------------
2659
+
2660
+ Authors: Sergio Benitez <sb@sergio.bz>
2661
+ Source location: https://github.com/SergioBenitez/uncased
2662
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2663
+
2664
+ The license texts for this component are reproduced elsewhere in this document.
2665
+
2666
+ Rust crate unicode-bidi
2667
+ -----------------------
2668
+
2669
+ Authors: The Servo Project Developers
2670
+ Source location: https://github.com/servo/unicode-bidi
2671
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2672
+
2673
+ The license texts for this component are reproduced elsewhere in this document.
2674
+
2675
+ Rust crate unicode-normalization
2676
+ --------------------------------
2677
+
2678
+ Authors: kwantam <kwantam@gmail.com>, Manish Goregaokar <manishsmail@gmail.com>
2679
+ Homepage: https://github.com/unicode-rs/unicode-normalization
2680
+ Source location: https://github.com/unicode-rs/unicode-normalization
2681
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2682
+
2683
+ The license texts for this component are reproduced elsewhere in this document.
2684
+
2685
+ Rust crate unicode-width
2686
+ ------------------------
2687
+
2688
+ Authors: kwantam <kwantam@gmail.com>, Manish Goregaokar <manishsmail@gmail.com>
2689
+ Homepage: https://github.com/unicode-rs/unicode-width
2690
+ Source location: https://github.com/unicode-rs/unicode-width
2691
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2692
+
2693
+ The license texts for this component are reproduced elsewhere in this document.
2694
+
2695
+ Rust crate unsafe-libyaml
2696
+ -------------------------
2697
+
2698
+ Authors: David Tolnay <dtolnay@gmail.com>
2699
+ Source location: https://github.com/dtolnay/unsafe-libyaml
2700
+ Licensed according to SPDX expression: MIT
2701
+
2702
+ The license texts for this component are reproduced elsewhere in this document.
2703
+
2704
+ Rust crate untrusted
2705
+ --------------------
2706
+
2707
+ Authors: Brian Smith <brian@briansmith.org>
2708
+ Source location: https://github.com/briansmith/untrusted
2709
+ Licensed according to SPDX expression: ISC
2710
+
2711
+ The license texts for this component are reproduced elsewhere in this document.
2712
+
2713
+ Rust crate url
2714
+ --------------
2715
+
2716
+ Authors: The rust-url developers
2717
+ Source location: https://github.com/servo/rust-url
2718
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2719
+
2720
+ The license texts for this component are reproduced elsewhere in this document.
2721
+
2722
+ Rust crate urlencoding
2723
+ ----------------------
2724
+
2725
+ Authors: Kornel <kornel@geekhood.net>, Bertram Truong <b@bertramtruong.com>
2726
+ Homepage: https://lib.rs/urlencoding
2727
+ Source location: https://github.com/kornelski/rust_urlencoding
2728
+ Licensed according to SPDX expression: MIT
2729
+
2730
+ The license texts for this component are reproduced elsewhere in this document.
2731
+
2732
+ Rust crate utf-8
2733
+ ----------------
2734
+
2735
+ Authors: Simon Sapin <simon.sapin@exyr.org>
2736
+ Source location: https://github.com/SimonSapin/rust-utf8
2737
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2738
+
2739
+ The license texts for this component are reproduced elsewhere in this document.
2740
+
2741
+ Rust crate utf8parse
2742
+ --------------------
2743
+
2744
+ Authors: Joe Wilm <joe@jwilm.com>, Christian Duerr <contact@christianduerr.com>
2745
+ Source location: https://github.com/alacritty/vte
2746
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
2747
+
2748
+ The license texts for this component are reproduced elsewhere in this document.
2749
+
2750
+ Rust crate uuid
2751
+ ---------------
2752
+
2753
+ Authors: Ashley Mannix<ashleymannix@live.com.au>, Christopher Armstrong, Dylan DPC<dylan.dpc@gmail.com>, Hunar Roop Kahlon<hunar.roop@gmail.com>
2754
+ Homepage: https://github.com/uuid-rs/uuid
2755
+ Source location: https://github.com/uuid-rs/uuid
2756
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
2757
+
2758
+ The license texts for this component are reproduced elsewhere in this document.
2759
+
2760
+ Rust crate vsimd
2761
+ ----------------
2762
+
2763
+ Source location: https://github.com/Nugine/simd
2764
+ Licensed according to SPDX expression: MIT
2765
+
2766
+ The license texts for this component are reproduced elsewhere in this document.
2767
+
2768
+ Rust crate walkdir
2769
+ ------------------
2770
+
2771
+ Authors: Andrew Gallant <jamslam@gmail.com>
2772
+ Homepage: https://github.com/BurntSushi/walkdir
2773
+ Source location: https://github.com/BurntSushi/walkdir
2774
+ Licensed according to SPDX expression: Unlicense OR MIT
2775
+
2776
+ The license texts for this component are reproduced elsewhere in this document.
2777
+
2778
+ Rust crate want
2779
+ ---------------
2780
+
2781
+ Authors: Sean McArthur <sean@seanmonstar.com>
2782
+ Source location: https://github.com/seanmonstar/want
2783
+ Licensed according to SPDX expression: MIT
2784
+
2785
+ The license texts for this component are reproduced elsewhere in this document.
2786
+
2787
+ Rust crate webpki-roots
2788
+ -----------------------
2789
+
2790
+ Homepage: https://github.com/rustls/webpki-roots
2791
+ Source location: https://github.com/rustls/webpki-roots
2792
+ Licensed according to SPDX expression: MPL-2.0
2793
+
2794
+ The license texts for this component are reproduced elsewhere in this document.
2795
+
2796
+ Rust crate winnow
2797
+ -----------------
2798
+
2799
+ Source location: https://github.com/winnow-rs/winnow
2800
+ Licensed according to SPDX expression: MIT
2801
+
2802
+ The license texts for this component are reproduced elsewhere in this document.
2803
+
2804
+ Rust crate wyz
2805
+ --------------
2806
+
2807
+ Authors: myrrlyn <self@myrrlyn.dev>
2808
+ Homepage: https://myrrlyn.net/crates/wyz
2809
+ Source location: https://github.com/myrrlyn/wyz
2810
+ Licensed according to SPDX expression: MIT
2811
+
2812
+ The license texts for this component are reproduced elsewhere in this document.
2813
+
2814
+ Rust crate x509
2815
+ ---------------
2816
+
2817
+ Authors: Jack Grigg <thestr4d@gmail.com>
2818
+ Source location: https://github.com/str4d/x509.rs
2819
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2820
+
2821
+ The license texts for this component are reproduced elsewhere in this document.
2822
+
2823
+ Rust crate x509-cert
2824
+ --------------------
2825
+
2826
+ Authors: RustCrypto Developers
2827
+ Source location: https://github.com/RustCrypto/formats/tree/master/x509-cert
2828
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
2829
+
2830
+ The license texts for this component are reproduced elsewhere in this document.
2831
+
2832
+ Rust crate x509-certificate
2833
+ ---------------------------
2834
+
2835
+ Authors: Gregory Szorc <gregory.szorc@gmail.com>
2836
+ Homepage: https://github.com/indygreg/cryptography-rs
2837
+ Source location: https://github.com/indygreg/cryptography-rs.git
2838
+ Licensed according to SPDX expression: MPL-2.0
2839
+
2840
+ The license texts for this component are reproduced elsewhere in this document.
2841
+
2842
+ Rust crate xml-rs
2843
+ -----------------
2844
+
2845
+ Authors: Vladimir Matveev <vmatveev@citrine.cc>
2846
+ Homepage: https://lib.rs/crates/xml-rs
2847
+ Source location: https://github.com/kornelski/xml-rs
2848
+ Licensed according to SPDX expression: MIT
2849
+
2850
+ The license texts for this component are reproduced elsewhere in this document.
2851
+
2852
+ Rust crate xmlparser
2853
+ --------------------
2854
+
2855
+ Authors: Yevhenii Reizner <razrfalcon@gmail.com>
2856
+ Source location: https://github.com/RazrFalcon/xmlparser
2857
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2858
+
2859
+ The license texts for this component are reproduced elsewhere in this document.
2860
+
2861
+ Rust crate xz2
2862
+ --------------
2863
+
2864
+ Authors: Alex Crichton <alex@alexcrichton.com>
2865
+ Homepage: https://github.com/alexcrichton/xz2-rs
2866
+ Source location: https://github.com/alexcrichton/xz2-rs
2867
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2868
+
2869
+ The license texts for this component are reproduced elsewhere in this document.
2870
+
2871
+ Rust crate yansi
2872
+ ----------------
2873
+
2874
+ Authors: Sergio Benitez <sb@sergio.bz>
2875
+ Source location: https://github.com/SergioBenitez/yansi
2876
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2877
+
2878
+ The license texts for this component are reproduced elsewhere in this document.
2879
+
2880
+ Rust crate yasna
2881
+ ----------------
2882
+
2883
+ Authors: Masaki Hara <ackie.h.gmai@gmail.com>
2884
+ Homepage: https://github.com/qnighy/yasna.rs
2885
+ Source location: https://github.com/qnighy/yasna.rs
2886
+ Licensed according to SPDX expression: MIT OR Apache-2.0
2887
+
2888
+ The license texts for this component are reproduced elsewhere in this document.
2889
+
2890
+ Rust crate yubikey
2891
+ ------------------
2892
+
2893
+ Authors: Tony Arcieri <tony@iqlusion.io>, Yubico AB
2894
+ Source location: https://github.com/iqlusioninc/yubikey.rs
2895
+ Licensed according to SPDX expression: BSD-2-Clause
2896
+
2897
+ The license texts for this component are reproduced elsewhere in this document.
2898
+
2899
+ Rust crate zerocopy
2900
+ -------------------
2901
+
2902
+ Authors: Joshua Liebow-Feeser <joshlf@google.com>
2903
+ Source location: https://github.com/google/zerocopy
2904
+ Licensed according to SPDX expression: BSD-2-Clause OR Apache-2.0 OR MIT
2905
+
2906
+ The license texts for this component are reproduced elsewhere in this document.
2907
+
2908
+ Rust crate zeroize
2909
+ ------------------
2910
+
2911
+ Authors: The RustCrypto Project Developers
2912
+ Source location: https://github.com/RustCrypto/utils/tree/master/zeroize
2913
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
2914
+
2915
+ The license texts for this component are reproduced elsewhere in this document.
2916
+
2917
+ Rust crate zeroize_derive
2918
+ -------------------------
2919
+
2920
+ Authors: The RustCrypto Project Developers
2921
+ Source location: https://github.com/RustCrypto/utils/tree/master/zeroize/derive
2922
+ Licensed according to SPDX expression: Apache-2.0 OR MIT
2923
+
2924
+ The license texts for this component are reproduced elsewhere in this document.
2925
+
2926
+ Rust crate zip
2927
+ --------------
2928
+
2929
+ Authors: Mathijs van de Nes <git@mathijs.vd-nes.nl>, Marli Frost <marli@frost.red>, Ryan Levick <ryan.levick@gmail.com>
2930
+ Source location: https://github.com/zip-rs/zip.git
2931
+ Licensed according to SPDX expression: MIT
2932
+
2933
+ The license texts for this component are reproduced elsewhere in this document.
2934
+
2935
+ Rust crate zip_structs
2936
+ ----------------------
2937
+
2938
+ Authors: Tatsunori Uchino <tats.u@live.jp>
2939
+ Source location: https://github.com/tats-u/rust-zip-structs/
2940
+ Licensed according to SPDX expression: MIT
2941
+
2942
+ The license texts for this component are reproduced elsewhere in this document.
2943
+
2944
+ SPDX License Texts
2945
+ ==================
2946
+
2947
+ The following sections contain license texts for all SPDX licenses
2948
+ referenced by software components listed above.
2949
+
2950
+ 0BSD / BSD Zero Clause License
2951
+ ------------------------------
2952
+
2953
+ Copyright (C) YEAR by AUTHOR EMAIL
2954
+
2955
+ Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted.
2956
+
2957
+ THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
2958
+
2959
+
2960
+ Apache-2.0 / Apache License 2.0
2961
+ -------------------------------
2962
+
2963
+ Apache License
2964
+ Version 2.0, January 2004
2965
+ http://www.apache.org/licenses/
2966
+
2967
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
2968
+
2969
+ 1. Definitions.
2970
+
2971
+ "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document.
2972
+
2973
+ "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License.
2974
+
2975
+ "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity.
2976
+
2977
+ "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License.
2978
+
2979
+ "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files.
2980
+
2981
+ "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types.
2982
+
2983
+ "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below).
2984
+
2985
+ "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof.
2986
+
2987
+ "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution."
2988
+
2989
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work.
2990
+
2991
+ 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
2992
+
2993
+ 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
2994
+
2995
+ 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
2996
+
2997
+ (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and
2998
+
2999
+ (b) You must cause any modified files to carry prominent notices stating that You changed the files; and
3000
+
3001
+ (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and
3002
+
3003
+ (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License.
3004
+
3005
+ You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License.
3006
+
3007
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
3008
+
3009
+ 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
3010
+
3011
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
3012
+
3013
+ 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
3014
+
3015
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
3016
+
3017
+ END OF TERMS AND CONDITIONS
3018
+
3019
+ APPENDIX: How to apply the Apache License to your work.
3020
+
3021
+ To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives.
3022
+
3023
+ Copyright [yyyy] [name of copyright owner]
3024
+
3025
+ Licensed under the Apache License, Version 2.0 (the "License");
3026
+ you may not use this file except in compliance with the License.
3027
+ You may obtain a copy of the License at
3028
+
3029
+ http://www.apache.org/licenses/LICENSE-2.0
3030
+
3031
+ Unless required by applicable law or agreed to in writing, software
3032
+ distributed under the License is distributed on an "AS IS" BASIS,
3033
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
3034
+ See the License for the specific language governing permissions and
3035
+ limitations under the License.
3036
+
3037
+
3038
+ BSD-2-Clause / BSD 2-Clause "Simplified" License
3039
+ ------------------------------------------------
3040
+
3041
+ Copyright (c) <year> <owner>
3042
+
3043
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
3044
+
3045
+ 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
3046
+
3047
+ 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
3048
+
3049
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3050
+
3051
+
3052
+ BSD-3-Clause / BSD 3-Clause "New" or "Revised" License
3053
+ ------------------------------------------------------
3054
+
3055
+ Copyright (c) <year> <owner>.
3056
+
3057
+ Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
3058
+
3059
+ 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
3060
+
3061
+ 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
3062
+
3063
+ 3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
3064
+
3065
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3066
+
3067
+
3068
+ BSL-1.0 / Boost Software License 1.0
3069
+ ------------------------------------
3070
+
3071
+ Boost Software License - Version 1.0 - August 17th, 2003
3072
+
3073
+ Permission is hereby granted, free of charge, to any person or organization obtaining a copy of the software and accompanying documentation covered by this license (the "Software") to use, reproduce, display, distribute, execute, and transmit the Software, and to prepare derivative works of the Software, and to permit third-parties to whom the Software is furnished to do so, all subject to the following:
3074
+
3075
+ The copyright notices in the Software and this entire statement, including the above license grant, this restriction and the following disclaimer, must be included in all copies of the Software, in whole or in part, and all derivative works of the Software, unless such copies or derivative works are solely in the form of machine-executable object code generated by a source language processor.
3076
+
3077
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3078
+
3079
+
3080
+ BlueOak-1.0.0 / Blue Oak Model License 1.0.0
3081
+ --------------------------------------------
3082
+
3083
+ # Blue Oak Model License
3084
+
3085
+ Version 1.0.0
3086
+
3087
+ ## Purpose
3088
+
3089
+ This license gives everyone as much permission to work with
3090
+ this software as possible, while protecting contributors
3091
+ from liability.
3092
+
3093
+ ## Acceptance
3094
+
3095
+ In order to receive this license, you must agree to its
3096
+ rules. The rules of this license are both obligations
3097
+ under that agreement and conditions to your license.
3098
+ You must not do anything with this software that triggers
3099
+ a rule that you cannot or will not follow.
3100
+
3101
+ ## Copyright
3102
+
3103
+ Each contributor licenses you to do everything with this
3104
+ software that would otherwise infringe that contributor's
3105
+ copyright in it.
3106
+
3107
+ ## Notices
3108
+
3109
+ You must ensure that everyone who gets a copy of
3110
+ any part of this software from you, with or without
3111
+ changes, also gets the text of this license or a link to
3112
+ <https://blueoakcouncil.org/license/1.0.0>.
3113
+
3114
+ ## Excuse
3115
+
3116
+ If anyone notifies you in writing that you have not
3117
+ complied with [Notices](#notices), you can keep your
3118
+ license by taking all practical steps to comply within 30
3119
+ days after the notice. If you do not do so, your license
3120
+ ends immediately.
3121
+
3122
+ ## Patent
3123
+
3124
+ Each contributor licenses you to do everything with this
3125
+ software that would otherwise infringe any patent claims
3126
+ they can license or become able to license.
3127
+
3128
+ ## Reliability
3129
+
3130
+ No contributor can revoke this license.
3131
+
3132
+ ## No Liability
3133
+
3134
+ ***As far as the law allows, this software comes as is,
3135
+ without any warranty or condition, and no contributor
3136
+ will be liable to anyone for any damages related to this
3137
+ software or this license, under any kind of legal claim.***
3138
+
3139
+
3140
+ ISC / ISC License
3141
+ -----------------
3142
+
3143
+ ISC License:
3144
+
3145
+ Copyright (c) 2004-2010 by Internet Systems Consortium, Inc. ("ISC")
3146
+ Copyright (c) 1995-2003 by Internet Software Consortium
3147
+
3148
+ Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
3149
+
3150
+ THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
3151
+
3152
+
3153
+ MIT / MIT License
3154
+ -----------------
3155
+
3156
+ MIT License
3157
+
3158
+ Copyright (c) <year> <copyright holders>
3159
+
3160
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
3161
+
3162
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
3163
+
3164
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3165
+
3166
+
3167
+ MPL-2.0 / Mozilla Public License 2.0
3168
+ ------------------------------------
3169
+
3170
+ Mozilla Public License Version 2.0
3171
+ ==================================
3172
+
3173
+ 1. Definitions
3174
+ --------------
3175
+
3176
+ 1.1. "Contributor"
3177
+ means each individual or legal entity that creates, contributes to
3178
+ the creation of, or owns Covered Software.
3179
+
3180
+ 1.2. "Contributor Version"
3181
+ means the combination of the Contributions of others (if any) used
3182
+ by a Contributor and that particular Contributor's Contribution.
3183
+
3184
+ 1.3. "Contribution"
3185
+ means Covered Software of a particular Contributor.
3186
+
3187
+ 1.4. "Covered Software"
3188
+ means Source Code Form to which the initial Contributor has attached
3189
+ the notice in Exhibit A, the Executable Form of such Source Code
3190
+ Form, and Modifications of such Source Code Form, in each case
3191
+ including portions thereof.
3192
+
3193
+ 1.5. "Incompatible With Secondary Licenses"
3194
+ means
3195
+
3196
+ (a) that the initial Contributor has attached the notice described
3197
+ in Exhibit B to the Covered Software; or
3198
+
3199
+ (b) that the Covered Software was made available under the terms of
3200
+ version 1.1 or earlier of the License, but not also under the
3201
+ terms of a Secondary License.
3202
+
3203
+ 1.6. "Executable Form"
3204
+ means any form of the work other than Source Code Form.
3205
+
3206
+ 1.7. "Larger Work"
3207
+ means a work that combines Covered Software with other material, in
3208
+ a separate file or files, that is not Covered Software.
3209
+
3210
+ 1.8. "License"
3211
+ means this document.
3212
+
3213
+ 1.9. "Licensable"
3214
+ means having the right to grant, to the maximum extent possible,
3215
+ whether at the time of the initial grant or subsequently, any and
3216
+ all of the rights conveyed by this License.
3217
+
3218
+ 1.10. "Modifications"
3219
+ means any of the following:
3220
+
3221
+ (a) any file in Source Code Form that results from an addition to,
3222
+ deletion from, or modification of the contents of Covered
3223
+ Software; or
3224
+
3225
+ (b) any new file in Source Code Form that contains any Covered
3226
+ Software.
3227
+
3228
+ 1.11. "Patent Claims" of a Contributor
3229
+ means any patent claim(s), including without limitation, method,
3230
+ process, and apparatus claims, in any patent Licensable by such
3231
+ Contributor that would be infringed, but for the grant of the
3232
+ License, by the making, using, selling, offering for sale, having
3233
+ made, import, or transfer of either its Contributions or its
3234
+ Contributor Version.
3235
+
3236
+ 1.12. "Secondary License"
3237
+ means either the GNU General Public License, Version 2.0, the GNU
3238
+ Lesser General Public License, Version 2.1, the GNU Affero General
3239
+ Public License, Version 3.0, or any later versions of those
3240
+ licenses.
3241
+
3242
+ 1.13. "Source Code Form"
3243
+ means the form of the work preferred for making modifications.
3244
+
3245
+ 1.14. "You" (or "Your")
3246
+ means an individual or a legal entity exercising rights under this
3247
+ License. For legal entities, "You" includes any entity that
3248
+ controls, is controlled by, or is under common control with You. For
3249
+ purposes of this definition, "control" means (a) the power, direct
3250
+ or indirect, to cause the direction or management of such entity,
3251
+ whether by contract or otherwise, or (b) ownership of more than
3252
+ fifty percent (50%) of the outstanding shares or beneficial
3253
+ ownership of such entity.
3254
+
3255
+ 2. License Grants and Conditions
3256
+ --------------------------------
3257
+
3258
+ 2.1. Grants
3259
+
3260
+ Each Contributor hereby grants You a world-wide, royalty-free,
3261
+ non-exclusive license:
3262
+
3263
+ (a) under intellectual property rights (other than patent or trademark)
3264
+ Licensable by such Contributor to use, reproduce, make available,
3265
+ modify, display, perform, distribute, and otherwise exploit its
3266
+ Contributions, either on an unmodified basis, with Modifications, or
3267
+ as part of a Larger Work; and
3268
+
3269
+ (b) under Patent Claims of such Contributor to make, use, sell, offer
3270
+ for sale, have made, import, and otherwise transfer either its
3271
+ Contributions or its Contributor Version.
3272
+
3273
+ 2.2. Effective Date
3274
+
3275
+ The licenses granted in Section 2.1 with respect to any Contribution
3276
+ become effective for each Contribution on the date the Contributor first
3277
+ distributes such Contribution.
3278
+
3279
+ 2.3. Limitations on Grant Scope
3280
+
3281
+ The licenses granted in this Section 2 are the only rights granted under
3282
+ this License. No additional rights or licenses will be implied from the
3283
+ distribution or licensing of Covered Software under this License.
3284
+ Notwithstanding Section 2.1(b) above, no patent license is granted by a
3285
+ Contributor:
3286
+
3287
+ (a) for any code that a Contributor has removed from Covered Software;
3288
+ or
3289
+
3290
+ (b) for infringements caused by: (i) Your and any other third party's
3291
+ modifications of Covered Software, or (ii) the combination of its
3292
+ Contributions with other software (except as part of its Contributor
3293
+ Version); or
3294
+
3295
+ (c) under Patent Claims infringed by Covered Software in the absence of
3296
+ its Contributions.
3297
+
3298
+ This License does not grant any rights in the trademarks, service marks,
3299
+ or logos of any Contributor (except as may be necessary to comply with
3300
+ the notice requirements in Section 3.4).
3301
+
3302
+ 2.4. Subsequent Licenses
3303
+
3304
+ No Contributor makes additional grants as a result of Your choice to
3305
+ distribute the Covered Software under a subsequent version of this
3306
+ License (see Section 10.2) or under the terms of a Secondary License (if
3307
+ permitted under the terms of Section 3.3).
3308
+
3309
+ 2.5. Representation
3310
+
3311
+ Each Contributor represents that the Contributor believes its
3312
+ Contributions are its original creation(s) or it has sufficient rights
3313
+ to grant the rights to its Contributions conveyed by this License.
3314
+
3315
+ 2.6. Fair Use
3316
+
3317
+ This License is not intended to limit any rights You have under
3318
+ applicable copyright doctrines of fair use, fair dealing, or other
3319
+ equivalents.
3320
+
3321
+ 2.7. Conditions
3322
+
3323
+ Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
3324
+ in Section 2.1.
3325
+
3326
+ 3. Responsibilities
3327
+ -------------------
3328
+
3329
+ 3.1. Distribution of Source Form
3330
+
3331
+ All distribution of Covered Software in Source Code Form, including any
3332
+ Modifications that You create or to which You contribute, must be under
3333
+ the terms of this License. You must inform recipients that the Source
3334
+ Code Form of the Covered Software is governed by the terms of this
3335
+ License, and how they can obtain a copy of this License. You may not
3336
+ attempt to alter or restrict the recipients' rights in the Source Code
3337
+ Form.
3338
+
3339
+ 3.2. Distribution of Executable Form
3340
+
3341
+ If You distribute Covered Software in Executable Form then:
3342
+
3343
+ (a) such Covered Software must also be made available in Source Code
3344
+ Form, as described in Section 3.1, and You must inform recipients of
3345
+ the Executable Form how they can obtain a copy of such Source Code
3346
+ Form by reasonable means in a timely manner, at a charge no more
3347
+ than the cost of distribution to the recipient; and
3348
+
3349
+ (b) You may distribute such Executable Form under the terms of this
3350
+ License, or sublicense it under different terms, provided that the
3351
+ license for the Executable Form does not attempt to limit or alter
3352
+ the recipients' rights in the Source Code Form under this License.
3353
+
3354
+ 3.3. Distribution of a Larger Work
3355
+
3356
+ You may create and distribute a Larger Work under terms of Your choice,
3357
+ provided that You also comply with the requirements of this License for
3358
+ the Covered Software. If the Larger Work is a combination of Covered
3359
+ Software with a work governed by one or more Secondary Licenses, and the
3360
+ Covered Software is not Incompatible With Secondary Licenses, this
3361
+ License permits You to additionally distribute such Covered Software
3362
+ under the terms of such Secondary License(s), so that the recipient of
3363
+ the Larger Work may, at their option, further distribute the Covered
3364
+ Software under the terms of either this License or such Secondary
3365
+ License(s).
3366
+
3367
+ 3.4. Notices
3368
+
3369
+ You may not remove or alter the substance of any license notices
3370
+ (including copyright notices, patent notices, disclaimers of warranty,
3371
+ or limitations of liability) contained within the Source Code Form of
3372
+ the Covered Software, except that You may alter any license notices to
3373
+ the extent required to remedy known factual inaccuracies.
3374
+
3375
+ 3.5. Application of Additional Terms
3376
+
3377
+ You may choose to offer, and to charge a fee for, warranty, support,
3378
+ indemnity or liability obligations to one or more recipients of Covered
3379
+ Software. However, You may do so only on Your own behalf, and not on
3380
+ behalf of any Contributor. You must make it absolutely clear that any
3381
+ such warranty, support, indemnity, or liability obligation is offered by
3382
+ You alone, and You hereby agree to indemnify every Contributor for any
3383
+ liability incurred by such Contributor as a result of warranty, support,
3384
+ indemnity or liability terms You offer. You may include additional
3385
+ disclaimers of warranty and limitations of liability specific to any
3386
+ jurisdiction.
3387
+
3388
+ 4. Inability to Comply Due to Statute or Regulation
3389
+ ---------------------------------------------------
3390
+
3391
+ If it is impossible for You to comply with any of the terms of this
3392
+ License with respect to some or all of the Covered Software due to
3393
+ statute, judicial order, or regulation then You must: (a) comply with
3394
+ the terms of this License to the maximum extent possible; and (b)
3395
+ describe the limitations and the code they affect. Such description must
3396
+ be placed in a text file included with all distributions of the Covered
3397
+ Software under this License. Except to the extent prohibited by statute
3398
+ or regulation, such description must be sufficiently detailed for a
3399
+ recipient of ordinary skill to be able to understand it.
3400
+
3401
+ 5. Termination
3402
+ --------------
3403
+
3404
+ 5.1. The rights granted under this License will terminate automatically
3405
+ if You fail to comply with any of its terms. However, if You become
3406
+ compliant, then the rights granted under this License from a particular
3407
+ Contributor are reinstated (a) provisionally, unless and until such
3408
+ Contributor explicitly and finally terminates Your grants, and (b) on an
3409
+ ongoing basis, if such Contributor fails to notify You of the
3410
+ non-compliance by some reasonable means prior to 60 days after You have
3411
+ come back into compliance. Moreover, Your grants from a particular
3412
+ Contributor are reinstated on an ongoing basis if such Contributor
3413
+ notifies You of the non-compliance by some reasonable means, this is the
3414
+ first time You have received notice of non-compliance with this License
3415
+ from such Contributor, and You become compliant prior to 30 days after
3416
+ Your receipt of the notice.
3417
+
3418
+ 5.2. If You initiate litigation against any entity by asserting a patent
3419
+ infringement claim (excluding declaratory judgment actions,
3420
+ counter-claims, and cross-claims) alleging that a Contributor Version
3421
+ directly or indirectly infringes any patent, then the rights granted to
3422
+ You by any and all Contributors for the Covered Software under Section
3423
+ 2.1 of this License shall terminate.
3424
+
3425
+ 5.3. In the event of termination under Sections 5.1 or 5.2 above, all
3426
+ end user license agreements (excluding distributors and resellers) which
3427
+ have been validly granted by You or Your distributors under this License
3428
+ prior to termination shall survive termination.
3429
+
3430
+ ************************************************************************
3431
+ * *
3432
+ * 6. Disclaimer of Warranty *
3433
+ * ------------------------- *
3434
+ * *
3435
+ * Covered Software is provided under this License on an "as is" *
3436
+ * basis, without warranty of any kind, either expressed, implied, or *
3437
+ * statutory, including, without limitation, warranties that the *
3438
+ * Covered Software is free of defects, merchantable, fit for a *
3439
+ * particular purpose or non-infringing. The entire risk as to the *
3440
+ * quality and performance of the Covered Software is with You. *
3441
+ * Should any Covered Software prove defective in any respect, You *
3442
+ * (not any Contributor) assume the cost of any necessary servicing, *
3443
+ * repair, or correction. This disclaimer of warranty constitutes an *
3444
+ * essential part of this License. No use of any Covered Software is *
3445
+ * authorized under this License except under this disclaimer. *
3446
+ * *
3447
+ ************************************************************************
3448
+
3449
+ ************************************************************************
3450
+ * *
3451
+ * 7. Limitation of Liability *
3452
+ * -------------------------- *
3453
+ * *
3454
+ * Under no circumstances and under no legal theory, whether tort *
3455
+ * (including negligence), contract, or otherwise, shall any *
3456
+ * Contributor, or anyone who distributes Covered Software as *
3457
+ * permitted above, be liable to You for any direct, indirect, *
3458
+ * special, incidental, or consequential damages of any character *
3459
+ * including, without limitation, damages for lost profits, loss of *
3460
+ * goodwill, work stoppage, computer failure or malfunction, or any *
3461
+ * and all other commercial damages or losses, even if such party *
3462
+ * shall have been informed of the possibility of such damages. This *
3463
+ * limitation of liability shall not apply to liability for death or *
3464
+ * personal injury resulting from such party's negligence to the *
3465
+ * extent applicable law prohibits such limitation. Some *
3466
+ * jurisdictions do not allow the exclusion or limitation of *
3467
+ * incidental or consequential damages, so this exclusion and *
3468
+ * limitation may not apply to You. *
3469
+ * *
3470
+ ************************************************************************
3471
+
3472
+ 8. Litigation
3473
+ -------------
3474
+
3475
+ Any litigation relating to this License may be brought only in the
3476
+ courts of a jurisdiction where the defendant maintains its principal
3477
+ place of business and such litigation shall be governed by laws of that
3478
+ jurisdiction, without reference to its conflict-of-law provisions.
3479
+ Nothing in this Section shall prevent a party's ability to bring
3480
+ cross-claims or counter-claims.
3481
+
3482
+ 9. Miscellaneous
3483
+ ----------------
3484
+
3485
+ This License represents the complete agreement concerning the subject
3486
+ matter hereof. If any provision of this License is held to be
3487
+ unenforceable, such provision shall be reformed only to the extent
3488
+ necessary to make it enforceable. Any law or regulation which provides
3489
+ that the language of a contract shall be construed against the drafter
3490
+ shall not be used to construe this License against a Contributor.
3491
+
3492
+ 10. Versions of the License
3493
+ ---------------------------
3494
+
3495
+ 10.1. New Versions
3496
+
3497
+ Mozilla Foundation is the license steward. Except as provided in Section
3498
+ 10.3, no one other than the license steward has the right to modify or
3499
+ publish new versions of this License. Each version will be given a
3500
+ distinguishing version number.
3501
+
3502
+ 10.2. Effect of New Versions
3503
+
3504
+ You may distribute the Covered Software under the terms of the version
3505
+ of the License under which You originally received the Covered Software,
3506
+ or under the terms of any subsequent version published by the license
3507
+ steward.
3508
+
3509
+ 10.3. Modified Versions
3510
+
3511
+ If you create software not governed by this License, and you want to
3512
+ create a new license for such software, you may create and use a
3513
+ modified version of this License if you rename the license and remove
3514
+ any references to the name of the license steward (except to note that
3515
+ such modified license differs from this License).
3516
+
3517
+ 10.4. Distributing Source Code Form that is Incompatible With Secondary
3518
+ Licenses
3519
+
3520
+ If You choose to distribute Source Code Form that is Incompatible With
3521
+ Secondary Licenses under the terms of this version of the License, the
3522
+ notice described in Exhibit B of this License must be attached.
3523
+
3524
+ Exhibit A - Source Code Form License Notice
3525
+ -------------------------------------------
3526
+
3527
+ This Source Code Form is subject to the terms of the Mozilla Public
3528
+ License, v. 2.0. If a copy of the MPL was not distributed with this
3529
+ file, You can obtain one at https://mozilla.org/MPL/2.0/.
3530
+
3531
+ If it is not possible or desirable to put the notice in a particular
3532
+ file, then You may include the notice in a location (such as a LICENSE
3533
+ file in a relevant directory) where a recipient would be likely to look
3534
+ for such a notice.
3535
+
3536
+ You may add additional accurate notices of copyright ownership.
3537
+
3538
+ Exhibit B - "Incompatible With Secondary Licenses" Notice
3539
+ ---------------------------------------------------------
3540
+
3541
+ This Source Code Form is "Incompatible With Secondary Licenses", as
3542
+ defined by the Mozilla Public License, v. 2.0.
3543
+
3544
+
3545
+ Unlicense / The Unlicense
3546
+ -------------------------
3547
+
3548
+ This is free and unencumbered software released into the public domain.
3549
+
3550
+ Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.
3551
+
3552
+ In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and
3553
+ successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.
3554
+
3555
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3556
+
3557
+ For more information, please refer to <http://unlicense.org/>
3558
+
3559
+
3560
+ Zlib / zlib License
3561
+ -------------------
3562
+
3563
+ zlib License
3564
+
3565
+ This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.
3566
+
3567
+ Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:
3568
+
3569
+ 1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
3570
+
3571
+ 2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
3572
+
3573
+ 3. This notice may not be removed or altered from any source distribution.
3574
+
3575
+