libdatadog 11.0.0.1.0-x86_64-linux → 12.0.0.1.0-x86_64-linux

Sign up to get free protection for your applications and to get access to all the features.
Files changed (25) hide show
  1. checksums.yaml +4 -4
  2. data/lib/libdatadog/version.rb +1 -1
  3. data/vendor/{libdatadog-11.0.0 → libdatadog-12.0.0}/x86_64-linux/libdatadog-x86_64-unknown-linux-gnu/LICENSE-3rdparty.yml +247 -2
  4. data/vendor/{libdatadog-11.0.0 → libdatadog-12.0.0}/x86_64-linux/libdatadog-x86_64-unknown-linux-gnu/bin/libdatadog-crashtracking-receiver +0 -0
  5. data/vendor/{libdatadog-11.0.0/x86_64-linux-musl/libdatadog-x86_64-alpine-linux-musl → libdatadog-12.0.0/x86_64-linux/libdatadog-x86_64-unknown-linux-gnu}/include/datadog/common.h +495 -285
  6. data/vendor/libdatadog-12.0.0/x86_64-linux/libdatadog-x86_64-unknown-linux-gnu/include/datadog/crashtracker.h +419 -0
  7. data/vendor/{libdatadog-11.0.0/x86_64-linux-musl/libdatadog-x86_64-alpine-linux-musl → libdatadog-12.0.0/x86_64-linux/libdatadog-x86_64-unknown-linux-gnu}/include/datadog/profiling.h +10 -275
  8. data/vendor/{libdatadog-11.0.0 → libdatadog-12.0.0}/x86_64-linux/libdatadog-x86_64-unknown-linux-gnu/lib/libdatadog_profiling.so +0 -0
  9. data/vendor/{libdatadog-11.0.0 → libdatadog-12.0.0}/x86_64-linux-musl/libdatadog-x86_64-alpine-linux-musl/LICENSE-3rdparty.yml +247 -2
  10. data/vendor/{libdatadog-11.0.0 → libdatadog-12.0.0}/x86_64-linux-musl/libdatadog-x86_64-alpine-linux-musl/bin/libdatadog-crashtracking-receiver +0 -0
  11. data/vendor/{libdatadog-11.0.0/x86_64-linux/libdatadog-x86_64-unknown-linux-gnu → libdatadog-12.0.0/x86_64-linux-musl/libdatadog-x86_64-alpine-linux-musl}/include/datadog/common.h +495 -285
  12. data/vendor/libdatadog-12.0.0/x86_64-linux-musl/libdatadog-x86_64-alpine-linux-musl/include/datadog/crashtracker.h +419 -0
  13. data/vendor/{libdatadog-11.0.0/x86_64-linux/libdatadog-x86_64-unknown-linux-gnu → libdatadog-12.0.0/x86_64-linux-musl/libdatadog-x86_64-alpine-linux-musl}/include/datadog/profiling.h +10 -275
  14. data/vendor/{libdatadog-11.0.0 → libdatadog-12.0.0}/x86_64-linux-musl/libdatadog-x86_64-alpine-linux-musl/lib/libdatadog_profiling.so +0 -0
  15. metadata +24 -22
  16. /data/vendor/{libdatadog-11.0.0 → libdatadog-12.0.0}/x86_64-linux/libdatadog-x86_64-unknown-linux-gnu/LICENSE +0 -0
  17. /data/vendor/{libdatadog-11.0.0 → libdatadog-12.0.0}/x86_64-linux/libdatadog-x86_64-unknown-linux-gnu/NOTICE +0 -0
  18. /data/vendor/{libdatadog-11.0.0 → libdatadog-12.0.0}/x86_64-linux/libdatadog-x86_64-unknown-linux-gnu/include/datadog/blazesym.h +0 -0
  19. /data/vendor/{libdatadog-11.0.0 → libdatadog-12.0.0}/x86_64-linux/libdatadog-x86_64-unknown-linux-gnu/include/datadog/telemetry.h +0 -0
  20. /data/vendor/{libdatadog-11.0.0 → libdatadog-12.0.0}/x86_64-linux/libdatadog-x86_64-unknown-linux-gnu/lib/pkgconfig/datadog_profiling_with_rpath.pc +0 -0
  21. /data/vendor/{libdatadog-11.0.0 → libdatadog-12.0.0}/x86_64-linux-musl/libdatadog-x86_64-alpine-linux-musl/LICENSE +0 -0
  22. /data/vendor/{libdatadog-11.0.0 → libdatadog-12.0.0}/x86_64-linux-musl/libdatadog-x86_64-alpine-linux-musl/NOTICE +0 -0
  23. /data/vendor/{libdatadog-11.0.0 → libdatadog-12.0.0}/x86_64-linux-musl/libdatadog-x86_64-alpine-linux-musl/include/datadog/blazesym.h +0 -0
  24. /data/vendor/{libdatadog-11.0.0 → libdatadog-12.0.0}/x86_64-linux-musl/libdatadog-x86_64-alpine-linux-musl/include/datadog/telemetry.h +0 -0
  25. /data/vendor/{libdatadog-11.0.0 → libdatadog-12.0.0}/x86_64-linux-musl/libdatadog-x86_64-alpine-linux-musl/lib/pkgconfig/datadog_profiling_with_rpath.pc +0 -0
@@ -16,279 +16,6 @@
16
16
  extern "C" {
17
17
  #endif // __cplusplus
18
18
 
19
- /**
20
- * Cleans up after the crash-tracker:
21
- * Unregister the crash handler, restore the previous handler (if any), and
22
- * shut down the receiver. Note that the use of this function is optional:
23
- * the receiver will automatically shutdown when the pipe is closed on program
24
- * exit.
25
- *
26
- * # Preconditions
27
- * This function assumes that the crash-tracker has previously been
28
- * initialized.
29
- * # Safety
30
- * Crash-tracking functions are not reentrant.
31
- * No other crash-handler functions should be called concurrently.
32
- * # Atomicity
33
- * This function is not atomic. A crash during its execution may lead to
34
- * unexpected crash-handling behaviour.
35
- */
36
- DDOG_CHECK_RETURN struct ddog_prof_CrashtrackerResult ddog_prof_Crashtracker_shutdown(void);
37
-
38
- /**
39
- * Reinitialize the crash-tracking infrastructure after a fork.
40
- * This should be one of the first things done after a fork, to minimize the
41
- * chance that a crash occurs between the fork, and this call.
42
- * In particular, reset the counters that track the profiler state machine,
43
- * and start a new receiver to collect data from this fork.
44
- * NOTE: An alternative design would be to have a 1:many sidecar listening on a
45
- * socket instead of 1:1 receiver listening on a pipe, but the only real
46
- * advantage would be to have fewer processes in `ps -a`.
47
- *
48
- * # Preconditions
49
- * This function assumes that the crash-tracker has previously been
50
- * initialized.
51
- * # Safety
52
- * Crash-tracking functions are not reentrant.
53
- * No other crash-handler functions should be called concurrently.
54
- * # Atomicity
55
- * This function is not atomic. A crash during its execution may lead to
56
- * unexpected crash-handling behaviour.
57
- */
58
- DDOG_CHECK_RETURN
59
- struct ddog_prof_CrashtrackerResult ddog_prof_Crashtracker_update_on_fork(struct ddog_prof_CrashtrackerConfiguration config,
60
- struct ddog_prof_CrashtrackerReceiverConfig receiver_config,
61
- struct ddog_prof_CrashtrackerMetadata metadata);
62
-
63
- /**
64
- * Receives data from a crash collector via a pipe on `stdin`, formats it into
65
- * `CrashInfo` json, and emits it to the endpoint/file defined in `config`.
66
- *
67
- * At a high-level, this exists because doing anything in a
68
- * signal handler is dangerous, so we fork a sidecar to do the stuff we aren't
69
- * allowed to do in the handler.
70
- *
71
- * See comments in [profiling/crashtracker/mod.rs] for a full architecture
72
- * description.
73
- * # Safety
74
- * No safety concerns
75
- */
76
- DDOG_CHECK_RETURN
77
- struct ddog_prof_CrashtrackerResult ddog_prof_Crashtracker_receiver_entry_point_stdin(void);
78
-
79
- /**
80
- * Receives data from a crash collector via a pipe on `stdin`, formats it into
81
- * `CrashInfo` json, and emits it to the endpoint/file defined in `config`.
82
- *
83
- * At a high-level, this exists because doing anything in a
84
- * signal handler is dangerous, so we fork a sidecar to do the stuff we aren't
85
- * allowed to do in the handler.
86
- *
87
- * See comments in [profiling/crashtracker/mod.rs] for a full architecture
88
- * description.
89
- * # Safety
90
- * No safety concerns
91
- */
92
- DDOG_CHECK_RETURN
93
- struct ddog_prof_CrashtrackerResult ddog_prof_Crashtracker_receiver_entry_point_unix_socket(ddog_CharSlice socket_path);
94
-
95
- /**
96
- * Initialize the crash-tracking infrastructure.
97
- *
98
- * # Preconditions
99
- * None.
100
- * # Safety
101
- * Crash-tracking functions are not reentrant.
102
- * No other crash-handler functions should be called concurrently.
103
- * # Atomicity
104
- * This function is not atomic. A crash during its execution may lead to
105
- * unexpected crash-handling behaviour.
106
- */
107
- DDOG_CHECK_RETURN
108
- struct ddog_prof_CrashtrackerResult ddog_prof_Crashtracker_init_with_receiver(struct ddog_prof_CrashtrackerConfiguration config,
109
- struct ddog_prof_CrashtrackerReceiverConfig receiver_config,
110
- struct ddog_prof_CrashtrackerMetadata metadata);
111
-
112
- /**
113
- * Resets all counters to 0.
114
- * Expected to be used after a fork, to reset the counters on the child
115
- * ATOMICITY:
116
- * This is NOT ATOMIC.
117
- * Should only be used when no conflicting updates can occur,
118
- * e.g. after a fork but before profiling ops start on the child.
119
- * # Safety
120
- * No safety concerns.
121
- */
122
- DDOG_CHECK_RETURN struct ddog_prof_CrashtrackerResult ddog_prof_Crashtracker_reset_counters(void);
123
-
124
- /**
125
- * Atomically increments the count associated with `op`.
126
- * Useful for tracking what operations were occuring when a crash occurred.
127
- *
128
- * # Safety
129
- * No safety concerns.
130
- */
131
- DDOG_CHECK_RETURN
132
- struct ddog_prof_CrashtrackerResult ddog_prof_Crashtracker_begin_profiling_op(enum ddog_prof_ProfilingOpTypes op);
133
-
134
- /**
135
- * Atomically decrements the count associated with `op`.
136
- * Useful for tracking what operations were occuring when a crash occurred.
137
- *
138
- * # Safety
139
- * No safety concerns.
140
- */
141
- DDOG_CHECK_RETURN
142
- struct ddog_prof_CrashtrackerResult ddog_prof_Crashtracker_end_profiling_op(enum ddog_prof_ProfilingOpTypes op);
143
-
144
- /**
145
- * Create a new crashinfo, and returns an opaque reference to it.
146
- * # Safety
147
- * No safety issues.
148
- */
149
- DDOG_CHECK_RETURN struct ddog_prof_CrashInfoNewResult ddog_crashinfo_new(void);
150
-
151
- /**
152
- * # Safety
153
- * The `crash_info` can be null, but if non-null it must point to a CrashInfo
154
- * made by this module, which has not previously been dropped.
155
- */
156
- void ddog_crashinfo_drop(struct ddog_prof_CrashInfo *crashinfo);
157
-
158
- /**
159
- * Best effort attempt to normalize all `ip` on the stacktrace.
160
- * `pid` must be the pid of the currently active process where the ips came from.
161
- *
162
- * # Safety
163
- * `crashinfo` must be a valid pointer to a `CrashInfo` object.
164
- */
165
- DDOG_CHECK_RETURN
166
- struct ddog_prof_CrashtrackerResult ddog_crashinfo_normalize_ips(struct ddog_prof_CrashInfo *crashinfo,
167
- uint32_t pid);
168
-
169
- /**
170
- * Adds a "counter" variable, with the given value. Useful for determining if
171
- * "interesting" operations were occurring when the crash did.
172
- *
173
- * # Safety
174
- * `crashinfo` must be a valid pointer to a `CrashInfo` object.
175
- * `name` should be a valid reference to a utf8 encoded String.
176
- * The string is copied into the crashinfo, so it does not need to outlive this
177
- * call.
178
- */
179
- DDOG_CHECK_RETURN
180
- struct ddog_prof_CrashtrackerResult ddog_crashinfo_add_counter(struct ddog_prof_CrashInfo *crashinfo,
181
- ddog_CharSlice name,
182
- int64_t val);
183
-
184
- /**
185
- * Adds the contents of "file" to the crashinfo
186
- *
187
- * # Safety
188
- * `crashinfo` must be a valid pointer to a `CrashInfo` object.
189
- * `name` should be a valid reference to a utf8 encoded String.
190
- * The string is copied into the crashinfo, so it does not need to outlive this
191
- * call.
192
- */
193
- DDOG_CHECK_RETURN
194
- struct ddog_prof_CrashtrackerResult ddog_crashinfo_add_file(struct ddog_prof_CrashInfo *crashinfo,
195
- ddog_CharSlice name);
196
-
197
- /**
198
- * Adds the tag with given "key" and "value" to the crashinfo
199
- *
200
- * # Safety
201
- * `crashinfo` must be a valid pointer to a `CrashInfo` object.
202
- * `key` should be a valid reference to a utf8 encoded String.
203
- * `value` should be a valid reference to a utf8 encoded String.
204
- * The string is copied into the crashinfo, so it does not need to outlive this
205
- * call.
206
- */
207
- DDOG_CHECK_RETURN
208
- struct ddog_prof_CrashtrackerResult ddog_crashinfo_add_tag(struct ddog_prof_CrashInfo *crashinfo,
209
- ddog_CharSlice key,
210
- ddog_CharSlice value);
211
-
212
- /**
213
- * Sets the crashinfo metadata
214
- *
215
- * # Safety
216
- * `crashinfo` must be a valid pointer to a `CrashInfo` object.
217
- * All references inside `metadata` must be valid.
218
- * Strings are copied into the crashinfo, and do not need to outlive this call.
219
- */
220
- DDOG_CHECK_RETURN
221
- struct ddog_prof_CrashtrackerResult ddog_crashinfo_set_metadata(struct ddog_prof_CrashInfo *crashinfo,
222
- struct ddog_prof_CrashtrackerMetadata metadata);
223
-
224
- /**
225
- * Sets the crashinfo siginfo
226
- *
227
- * # Safety
228
- * `crashinfo` must be a valid pointer to a `CrashInfo` object.
229
- * All references inside `metadata` must be valid.
230
- * Strings are copied into the crashinfo, and do not need to outlive this call.
231
- */
232
- DDOG_CHECK_RETURN
233
- struct ddog_prof_CrashtrackerResult ddog_crashinfo_set_siginfo(struct ddog_prof_CrashInfo *crashinfo,
234
- struct ddog_prof_SigInfo siginfo);
235
-
236
- /**
237
- * If `thread_id` is empty, sets `stacktrace` as the default stacktrace.
238
- * Otherwise, adds an additional stacktrace with id "thread_id".
239
- *
240
- * # Safety
241
- * `crashinfo` must be a valid pointer to a `CrashInfo` object.
242
- * All references inside `stacktraces` must be valid.
243
- * Strings are copied into the crashinfo, and do not need to outlive this call.
244
- */
245
- DDOG_CHECK_RETURN
246
- struct ddog_prof_CrashtrackerResult ddog_crashinfo_set_stacktrace(struct ddog_prof_CrashInfo *crashinfo,
247
- ddog_CharSlice thread_id,
248
- struct ddog_prof_Slice_StackFrame stacktrace);
249
-
250
- /**
251
- * Sets the timestamp to the given unix timestamp
252
- *
253
- * # Safety
254
- * `crashinfo` must be a valid pointer to a `CrashInfo` object.
255
- */
256
- DDOG_CHECK_RETURN
257
- struct ddog_prof_CrashtrackerResult ddog_crashinfo_set_timestamp(struct ddog_prof_CrashInfo *crashinfo,
258
- int64_t secs,
259
- uint32_t nsecs);
260
-
261
- /**
262
- * Sets the timestamp to the current time
263
- *
264
- * # Safety
265
- * `crashinfo` must be a valid pointer to a `CrashInfo` object.
266
- */
267
- DDOG_CHECK_RETURN
268
- struct ddog_prof_CrashtrackerResult ddog_crashinfo_set_timestamp_to_now(struct ddog_prof_CrashInfo *crashinfo);
269
-
270
- /**
271
- * Exports `crashinfo` to the backend at `endpoint`
272
- * Note that we support the "file://" endpoint for local file output.
273
- * # Safety
274
- * `crashinfo` must be a valid pointer to a `CrashInfo` object.
275
- */
276
- DDOG_CHECK_RETURN
277
- struct ddog_prof_CrashtrackerResult ddog_crashinfo_upload_to_endpoint(struct ddog_prof_CrashInfo *crashinfo,
278
- struct ddog_prof_CrashtrackerConfiguration config);
279
-
280
- /**
281
- * Demangles the string "name".
282
- * If demangling fails, returns an empty string ""
283
- *
284
- * # Safety
285
- * `name` should be a valid reference to a utf8 encoded String.
286
- * The string is copied into the result, and does not need to outlive this call
287
- */
288
- DDOG_CHECK_RETURN
289
- struct ddog_prof_StringWrapperResult ddog_demangle(ddog_CharSlice name,
290
- enum ddog_prof_DemangleOptions options);
291
-
292
19
  DDOG_CHECK_RETURN struct ddog_prof_Exporter_Slice_File ddog_prof_Exporter_Slice_File_empty(void);
293
20
 
294
21
  /**
@@ -339,6 +66,15 @@ struct ddog_prof_Exporter_NewResult ddog_prof_Exporter_new(ddog_CharSlice profil
339
66
  const struct ddog_Vec_Tag *tags,
340
67
  struct ddog_prof_Endpoint endpoint);
341
68
 
69
+ /**
70
+ * Sets the value for the exporter's timeout.
71
+ * # Arguments
72
+ * * `exporter` - ProfileExporter instance.
73
+ * * `timeout_ms` - timeout in milliseconds.
74
+ */
75
+ ddog_prof_MaybeError ddog_prof_Exporter_set_timeout(struct ddog_prof_Exporter *exporter,
76
+ uint64_t timeout_ms);
77
+
342
78
  /**
343
79
  * # Safety
344
80
  * The `exporter` may be null, but if non-null the pointer must point to a
@@ -374,8 +110,7 @@ struct ddog_prof_Exporter_Request_BuildResult ddog_prof_Exporter_Request_build(s
374
110
  const struct ddog_Vec_Tag *optional_additional_tags,
375
111
  const struct ddog_prof_ProfiledEndpointsStats *optional_endpoints_stats,
376
112
  const ddog_CharSlice *optional_internal_metadata_json,
377
- const ddog_CharSlice *optional_info_json,
378
- uint64_t timeout_ms);
113
+ const ddog_CharSlice *optional_info_json);
379
114
 
380
115
  /**
381
116
  * # Safety
@@ -1,4 +1,4 @@
1
- root_name: datadog-alloc, datadog-crashtracker, ddcommon, ddtelemetry, datadog-ddsketch, datadog-profiling, datadog-profiling-ffi, data-pipeline-ffi, data-pipeline, datadog-trace-normalization, datadog-trace-protobuf, datadog-trace-utils, ddcommon-ffi, build_common, ddtelemetry-ffi, symbolizer-ffi, datadog-profiling-replayer, tools, datadog-ipc, datadog-ipc-macros, tarpc, tarpc-plugins, spawn_worker, cc_utils, datadog-sidecar, datadog-sidecar-macros, datadog-sidecar-ffi, sidecar_mockgen, datadog-trace-obfuscation, test_spawn_from_lib, datadog-serverless-trace-mini-agent, datadog-trace-mini-agent
1
+ root_name: datadog-alloc, datadog-crashtracker, ddcommon, ddtelemetry, datadog-ddsketch, datadog-crashtracker-ffi, ddcommon-ffi, build_common, datadog-profiling, datadog-profiling-ffi, data-pipeline-ffi, data-pipeline, datadog-trace-normalization, datadog-trace-protobuf, datadog-trace-utils, ddtelemetry-ffi, symbolizer-ffi, datadog-profiling-replayer, tools, datadog-ipc, datadog-ipc-macros, tarpc, tarpc-plugins, spawn_worker, cc_utils, datadog-sidecar, datadog-sidecar-macros, datadog-sidecar-ffi, sidecar_mockgen, datadog-trace-obfuscation, test_spawn_from_lib, datadog-serverless-trace-mini-agent, datadog-trace-mini-agent
2
2
  third_party_libraries:
3
3
  - package_name: addr2line
4
4
  package_version: 0.21.0
@@ -5682,7 +5682,7 @@ third_party_libraries:
5682
5682
  - license: Apache-2.0
5683
5683
  text: " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\nCopyright [yyyy] [name of copyright owner]\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n\thttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n"
5684
5684
  - package_name: chrono
5685
- package_version: 0.4.37
5685
+ package_version: 0.4.38
5686
5686
  repository: https://github.com/chronotope/chrono
5687
5687
  license: MIT OR Apache-2.0
5688
5688
  licenses:
@@ -7716,6 +7716,42 @@ third_party_libraries:
7716
7716
  DEALINGS IN THE SOFTWARE.
7717
7717
  - license: Apache-2.0
7718
7718
  text: " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\nCopyright [yyyy] [name of copyright owner]\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n\thttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n"
7719
+ - package_name: crossbeam-queue
7720
+ package_version: 0.3.11
7721
+ repository: https://github.com/crossbeam-rs/crossbeam
7722
+ license: MIT OR Apache-2.0
7723
+ licenses:
7724
+ - license: MIT
7725
+ text: |
7726
+ The MIT License (MIT)
7727
+
7728
+ Copyright (c) 2019 The Crossbeam Project Developers
7729
+
7730
+ Permission is hereby granted, free of charge, to any
7731
+ person obtaining a copy of this software and associated
7732
+ documentation files (the "Software"), to deal in the
7733
+ Software without restriction, including without
7734
+ limitation the rights to use, copy, modify, merge,
7735
+ publish, distribute, sublicense, and/or sell copies of
7736
+ the Software, and to permit persons to whom the Software
7737
+ is furnished to do so, subject to the following
7738
+ conditions:
7739
+
7740
+ The above copyright notice and this permission notice
7741
+ shall be included in all copies or substantial portions
7742
+ of the Software.
7743
+
7744
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
7745
+ ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
7746
+ TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
7747
+ PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
7748
+ SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
7749
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
7750
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
7751
+ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
7752
+ DEALINGS IN THE SOFTWARE.
7753
+ - license: Apache-2.0
7754
+ text: " Apache License\n Version 2.0, January 2004\n http://www.apache.org/licenses/\n\nTERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n1. Definitions.\n\n \"License\" shall mean the terms and conditions for use, reproduction,\n and distribution as defined by Sections 1 through 9 of this document.\n\n \"Licensor\" shall mean the copyright owner or entity authorized by\n the copyright owner that is granting the License.\n\n \"Legal Entity\" shall mean the union of the acting entity and all\n other entities that control, are controlled by, or are under common\n control with that entity. For the purposes of this definition,\n \"control\" means (i) the power, direct or indirect, to cause the\n direction or management of such entity, whether by contract or\n otherwise, or (ii) ownership of fifty percent (50%) or more of the\n outstanding shares, or (iii) beneficial ownership of such entity.\n\n \"You\" (or \"Your\") shall mean an individual or Legal Entity\n exercising permissions granted by this License.\n\n \"Source\" form shall mean the preferred form for making modifications,\n including but not limited to software source code, documentation\n source, and configuration files.\n\n \"Object\" form shall mean any form resulting from mechanical\n transformation or translation of a Source form, including but\n not limited to compiled object code, generated documentation,\n and conversions to other media types.\n\n \"Work\" shall mean the work of authorship, whether in Source or\n Object form, made available under the License, as indicated by a\n copyright notice that is included in or attached to the work\n (an example is provided in the Appendix below).\n\n \"Derivative Works\" shall mean any work, whether in Source or Object\n form, that is based on (or derived from) the Work and for which the\n editorial revisions, annotations, elaborations, or other modifications\n represent, as a whole, an original work of authorship. For the purposes\n of this License, Derivative Works shall not include works that remain\n separable from, or merely link (or bind by name) to the interfaces of,\n the Work and Derivative Works thereof.\n\n \"Contribution\" shall mean any work of authorship, including\n the original version of the Work and any modifications or additions\n to that Work or Derivative Works thereof, that is intentionally\n submitted to Licensor for inclusion in the Work by the copyright owner\n or by an individual or Legal Entity authorized to submit on behalf of\n the copyright owner. For the purposes of this definition, \"submitted\"\n means any form of electronic, verbal, or written communication sent\n to the Licensor or its representatives, including but not limited to\n communication on electronic mailing lists, source code control systems,\n and issue tracking systems that are managed by, or on behalf of, the\n Licensor for the purpose of discussing and improving the Work, but\n excluding communication that is conspicuously marked or otherwise\n designated in writing by the copyright owner as \"Not a Contribution.\"\n\n \"Contributor\" shall mean Licensor and any individual or Legal Entity\n on behalf of whom a Contribution has been received by Licensor and\n subsequently incorporated within the Work.\n\n2. Grant of Copyright License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n copyright license to reproduce, prepare Derivative Works of,\n publicly display, publicly perform, sublicense, and distribute the\n Work and such Derivative Works in Source or Object form.\n\n3. Grant of Patent License. Subject to the terms and conditions of\n this License, each Contributor hereby grants to You a perpetual,\n worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n (except as stated in this section) patent license to make, have made,\n use, offer to sell, sell, import, and otherwise transfer the Work,\n where such license applies only to those patent claims licensable\n by such Contributor that are necessarily infringed by their\n Contribution(s) alone or by combination of their Contribution(s)\n with the Work to which such Contribution(s) was submitted. If You\n institute patent litigation against any entity (including a\n cross-claim or counterclaim in a lawsuit) alleging that the Work\n or a Contribution incorporated within the Work constitutes direct\n or contributory patent infringement, then any patent licenses\n granted to You under this License for that Work shall terminate\n as of the date such litigation is filed.\n\n4. Redistribution. You may reproduce and distribute copies of the\n Work or Derivative Works thereof in any medium, with or without\n modifications, and in Source or Object form, provided that You\n meet the following conditions:\n\n (a) You must give any other recipients of the Work or\n Derivative Works a copy of this License; and\n\n (b) You must cause any modified files to carry prominent notices\n stating that You changed the files; and\n\n (c) You must retain, in the Source form of any Derivative Works\n that You distribute, all copyright, patent, trademark, and\n attribution notices from the Source form of the Work,\n excluding those notices that do not pertain to any part of\n the Derivative Works; and\n\n (d) If the Work includes a \"NOTICE\" text file as part of its\n distribution, then any Derivative Works that You distribute must\n include a readable copy of the attribution notices contained\n within such NOTICE file, excluding those notices that do not\n pertain to any part of the Derivative Works, in at least one\n of the following places: within a NOTICE text file distributed\n as part of the Derivative Works; within the Source form or\n documentation, if provided along with the Derivative Works; or,\n within a display generated by the Derivative Works, if and\n wherever such third-party notices normally appear. The contents\n of the NOTICE file are for informational purposes only and\n do not modify the License. You may add Your own attribution\n notices within Derivative Works that You distribute, alongside\n or as an addendum to the NOTICE text from the Work, provided\n that such additional attribution notices cannot be construed\n as modifying the License.\n\n You may add Your own copyright statement to Your modifications and\n may provide additional or different license terms and conditions\n for use, reproduction, or distribution of Your modifications, or\n for any such Derivative Works as a whole, provided Your use,\n reproduction, and distribution of the Work otherwise complies with\n the conditions stated in this License.\n\n5. Submission of Contributions. Unless You explicitly state otherwise,\n any Contribution intentionally submitted for inclusion in the Work\n by You to the Licensor shall be under the terms and conditions of\n this License, without any additional terms or conditions.\n Notwithstanding the above, nothing herein shall supersede or modify\n the terms of any separate license agreement you may have executed\n with Licensor regarding such Contributions.\n\n6. Trademarks. This License does not grant permission to use the trade\n names, trademarks, service marks, or product names of the Licensor,\n except as required for reasonable and customary use in describing the\n origin of the Work and reproducing the content of the NOTICE file.\n\n7. Disclaimer of Warranty. Unless required by applicable law or\n agreed to in writing, Licensor provides the Work (and each\n Contributor provides its Contributions) on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n implied, including, without limitation, any warranties or conditions\n of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n PARTICULAR PURPOSE. You are solely responsible for determining the\n appropriateness of using or redistributing the Work and assume any\n risks associated with Your exercise of permissions under this License.\n\n8. Limitation of Liability. In no event and under no legal theory,\n whether in tort (including negligence), contract, or otherwise,\n unless required by applicable law (such as deliberate and grossly\n negligent acts) or agreed to in writing, shall any Contributor be\n liable to You for damages, including any direct, indirect, special,\n incidental, or consequential damages of any character arising as a\n result of this License or out of the use or inability to use the\n Work (including but not limited to damages for loss of goodwill,\n work stoppage, computer failure or malfunction, or any and all\n other commercial damages or losses), even if such Contributor\n has been advised of the possibility of such damages.\n\n9. Accepting Warranty or Additional Liability. While redistributing\n the Work or Derivative Works thereof, You may choose to offer,\n and charge a fee for, acceptance of support, warranty, indemnity,\n or other liability obligations and/or rights consistent with this\n License. However, in accepting such obligations, You may act only\n on Your own behalf and on Your sole responsibility, not on behalf\n of any other Contributor, and only if You agree to indemnify,\n defend, and hold each Contributor harmless for any liability\n incurred by, or claims asserted against, such Contributor by reason\n of your accepting any such warranty or additional liability.\n\nEND OF TERMS AND CONDITIONS\n\nAPPENDIX: How to apply the Apache License to your work.\n\n To apply the Apache License to your work, attach the following\n boilerplate notice, with the fields enclosed by brackets \"[]\"\n replaced with your own identifying information. (Don't include\n the brackets!) The text should be enclosed in the appropriate\n comment syntax for the file format. We also recommend that a\n file or class name and description of purpose be included on the\n same \"printed page\" as the copyright notice for easier\n identification within third-party archives.\n\nCopyright [yyyy] [name of copyright owner]\n\nLicensed under the Apache License, Version 2.0 (the \"License\");\nyou may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\n\thttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software\ndistributed under the License is distributed on an \"AS IS\" BASIS,\nWITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and\nlimitations under the License.\n"
7719
7755
  - package_name: crossbeam-utils
7720
7756
  package_version: 0.8.19
7721
7757
  repository: https://github.com/crossbeam-rs/crossbeam
@@ -18399,6 +18435,215 @@ third_party_libraries:
18399
18435
  shall be included in all copies or substantial portions
18400
18436
  of the Software.
18401
18437
 
18438
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
18439
+ ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
18440
+ TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
18441
+ PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
18442
+ SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
18443
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
18444
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
18445
+ IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
18446
+ DEALINGS IN THE SOFTWARE.
18447
+ - package_name: portable-atomic
18448
+ package_version: 1.6.0
18449
+ repository: https://github.com/taiki-e/portable-atomic
18450
+ license: Apache-2.0 OR MIT
18451
+ licenses:
18452
+ - license: Apache-2.0
18453
+ text: |2
18454
+
18455
+ Apache License
18456
+ Version 2.0, January 2004
18457
+ http://www.apache.org/licenses/
18458
+
18459
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
18460
+
18461
+ 1. Definitions.
18462
+
18463
+ "License" shall mean the terms and conditions for use, reproduction,
18464
+ and distribution as defined by Sections 1 through 9 of this document.
18465
+
18466
+ "Licensor" shall mean the copyright owner or entity authorized by
18467
+ the copyright owner that is granting the License.
18468
+
18469
+ "Legal Entity" shall mean the union of the acting entity and all
18470
+ other entities that control, are controlled by, or are under common
18471
+ control with that entity. For the purposes of this definition,
18472
+ "control" means (i) the power, direct or indirect, to cause the
18473
+ direction or management of such entity, whether by contract or
18474
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
18475
+ outstanding shares, or (iii) beneficial ownership of such entity.
18476
+
18477
+ "You" (or "Your") shall mean an individual or Legal Entity
18478
+ exercising permissions granted by this License.
18479
+
18480
+ "Source" form shall mean the preferred form for making modifications,
18481
+ including but not limited to software source code, documentation
18482
+ source, and configuration files.
18483
+
18484
+ "Object" form shall mean any form resulting from mechanical
18485
+ transformation or translation of a Source form, including but
18486
+ not limited to compiled object code, generated documentation,
18487
+ and conversions to other media types.
18488
+
18489
+ "Work" shall mean the work of authorship, whether in Source or
18490
+ Object form, made available under the License, as indicated by a
18491
+ copyright notice that is included in or attached to the work
18492
+ (an example is provided in the Appendix below).
18493
+
18494
+ "Derivative Works" shall mean any work, whether in Source or Object
18495
+ form, that is based on (or derived from) the Work and for which the
18496
+ editorial revisions, annotations, elaborations, or other modifications
18497
+ represent, as a whole, an original work of authorship. For the purposes
18498
+ of this License, Derivative Works shall not include works that remain
18499
+ separable from, or merely link (or bind by name) to the interfaces of,
18500
+ the Work and Derivative Works thereof.
18501
+
18502
+ "Contribution" shall mean any work of authorship, including
18503
+ the original version of the Work and any modifications or additions
18504
+ to that Work or Derivative Works thereof, that is intentionally
18505
+ submitted to Licensor for inclusion in the Work by the copyright owner
18506
+ or by an individual or Legal Entity authorized to submit on behalf of
18507
+ the copyright owner. For the purposes of this definition, "submitted"
18508
+ means any form of electronic, verbal, or written communication sent
18509
+ to the Licensor or its representatives, including but not limited to
18510
+ communication on electronic mailing lists, source code control systems,
18511
+ and issue tracking systems that are managed by, or on behalf of, the
18512
+ Licensor for the purpose of discussing and improving the Work, but
18513
+ excluding communication that is conspicuously marked or otherwise
18514
+ designated in writing by the copyright owner as "Not a Contribution."
18515
+
18516
+ "Contributor" shall mean Licensor and any individual or Legal Entity
18517
+ on behalf of whom a Contribution has been received by Licensor and
18518
+ subsequently incorporated within the Work.
18519
+
18520
+ 2. Grant of Copyright License. Subject to the terms and conditions of
18521
+ this License, each Contributor hereby grants to You a perpetual,
18522
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
18523
+ copyright license to reproduce, prepare Derivative Works of,
18524
+ publicly display, publicly perform, sublicense, and distribute the
18525
+ Work and such Derivative Works in Source or Object form.
18526
+
18527
+ 3. Grant of Patent License. Subject to the terms and conditions of
18528
+ this License, each Contributor hereby grants to You a perpetual,
18529
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
18530
+ (except as stated in this section) patent license to make, have made,
18531
+ use, offer to sell, sell, import, and otherwise transfer the Work,
18532
+ where such license applies only to those patent claims licensable
18533
+ by such Contributor that are necessarily infringed by their
18534
+ Contribution(s) alone or by combination of their Contribution(s)
18535
+ with the Work to which such Contribution(s) was submitted. If You
18536
+ institute patent litigation against any entity (including a
18537
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
18538
+ or a Contribution incorporated within the Work constitutes direct
18539
+ or contributory patent infringement, then any patent licenses
18540
+ granted to You under this License for that Work shall terminate
18541
+ as of the date such litigation is filed.
18542
+
18543
+ 4. Redistribution. You may reproduce and distribute copies of the
18544
+ Work or Derivative Works thereof in any medium, with or without
18545
+ modifications, and in Source or Object form, provided that You
18546
+ meet the following conditions:
18547
+
18548
+ (a) You must give any other recipients of the Work or
18549
+ Derivative Works a copy of this License; and
18550
+
18551
+ (b) You must cause any modified files to carry prominent notices
18552
+ stating that You changed the files; and
18553
+
18554
+ (c) You must retain, in the Source form of any Derivative Works
18555
+ that You distribute, all copyright, patent, trademark, and
18556
+ attribution notices from the Source form of the Work,
18557
+ excluding those notices that do not pertain to any part of
18558
+ the Derivative Works; and
18559
+
18560
+ (d) If the Work includes a "NOTICE" text file as part of its
18561
+ distribution, then any Derivative Works that You distribute must
18562
+ include a readable copy of the attribution notices contained
18563
+ within such NOTICE file, excluding those notices that do not
18564
+ pertain to any part of the Derivative Works, in at least one
18565
+ of the following places: within a NOTICE text file distributed
18566
+ as part of the Derivative Works; within the Source form or
18567
+ documentation, if provided along with the Derivative Works; or,
18568
+ within a display generated by the Derivative Works, if and
18569
+ wherever such third-party notices normally appear. The contents
18570
+ of the NOTICE file are for informational purposes only and
18571
+ do not modify the License. You may add Your own attribution
18572
+ notices within Derivative Works that You distribute, alongside
18573
+ or as an addendum to the NOTICE text from the Work, provided
18574
+ that such additional attribution notices cannot be construed
18575
+ as modifying the License.
18576
+
18577
+ You may add Your own copyright statement to Your modifications and
18578
+ may provide additional or different license terms and conditions
18579
+ for use, reproduction, or distribution of Your modifications, or
18580
+ for any such Derivative Works as a whole, provided Your use,
18581
+ reproduction, and distribution of the Work otherwise complies with
18582
+ the conditions stated in this License.
18583
+
18584
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
18585
+ any Contribution intentionally submitted for inclusion in the Work
18586
+ by You to the Licensor shall be under the terms and conditions of
18587
+ this License, without any additional terms or conditions.
18588
+ Notwithstanding the above, nothing herein shall supersede or modify
18589
+ the terms of any separate license agreement you may have executed
18590
+ with Licensor regarding such Contributions.
18591
+
18592
+ 6. Trademarks. This License does not grant permission to use the trade
18593
+ names, trademarks, service marks, or product names of the Licensor,
18594
+ except as required for reasonable and customary use in describing the
18595
+ origin of the Work and reproducing the content of the NOTICE file.
18596
+
18597
+ 7. Disclaimer of Warranty. Unless required by applicable law or
18598
+ agreed to in writing, Licensor provides the Work (and each
18599
+ Contributor provides its Contributions) on an "AS IS" BASIS,
18600
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
18601
+ implied, including, without limitation, any warranties or conditions
18602
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
18603
+ PARTICULAR PURPOSE. You are solely responsible for determining the
18604
+ appropriateness of using or redistributing the Work and assume any
18605
+ risks associated with Your exercise of permissions under this License.
18606
+
18607
+ 8. Limitation of Liability. In no event and under no legal theory,
18608
+ whether in tort (including negligence), contract, or otherwise,
18609
+ unless required by applicable law (such as deliberate and grossly
18610
+ negligent acts) or agreed to in writing, shall any Contributor be
18611
+ liable to You for damages, including any direct, indirect, special,
18612
+ incidental, or consequential damages of any character arising as a
18613
+ result of this License or out of the use or inability to use the
18614
+ Work (including but not limited to damages for loss of goodwill,
18615
+ work stoppage, computer failure or malfunction, or any and all
18616
+ other commercial damages or losses), even if such Contributor
18617
+ has been advised of the possibility of such damages.
18618
+
18619
+ 9. Accepting Warranty or Additional Liability. While redistributing
18620
+ the Work or Derivative Works thereof, You may choose to offer,
18621
+ and charge a fee for, acceptance of support, warranty, indemnity,
18622
+ or other liability obligations and/or rights consistent with this
18623
+ License. However, in accepting such obligations, You may act only
18624
+ on Your own behalf and on Your sole responsibility, not on behalf
18625
+ of any other Contributor, and only if You agree to indemnify,
18626
+ defend, and hold each Contributor harmless for any liability
18627
+ incurred by, or claims asserted against, such Contributor by reason
18628
+ of your accepting any such warranty or additional liability.
18629
+
18630
+ END OF TERMS AND CONDITIONS
18631
+ - license: MIT
18632
+ text: |
18633
+ Permission is hereby granted, free of charge, to any
18634
+ person obtaining a copy of this software and associated
18635
+ documentation files (the "Software"), to deal in the
18636
+ Software without restriction, including without
18637
+ limitation the rights to use, copy, modify, merge,
18638
+ publish, distribute, sublicense, and/or sell copies of
18639
+ the Software, and to permit persons to whom the Software
18640
+ is furnished to do so, subject to the following
18641
+ conditions:
18642
+
18643
+ The above copyright notice and this permission notice
18644
+ shall be included in all copies or substantial portions
18645
+ of the Software.
18646
+
18402
18647
  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
18403
18648
  ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
18404
18649
  TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A